From d8015ac4a899dee63bdef99b4837d596ace9240a Mon Sep 17 00:00:00 2001 From: resolritter Date: Thu, 7 Jan 2021 16:59:07 -0300 Subject: [PATCH 1/2] designate doc comments --- corpus/source_files.txt | 30 +++++++++++++++++ grammar.js | 13 ++------ src/scanner.c | 71 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+), 10 deletions(-) diff --git a/corpus/source_files.txt b/corpus/source_files.txt index 12633276..8d369390 100644 --- a/corpus/source_files.txt +++ b/corpus/source_files.txt @@ -55,6 +55,36 @@ Line comments (source_file (line_comment)) +============================================ +Doc comments +============================================ + +/// Doc +/// Comment +// / Now a line comment (note the space separating the third slash) + +/// Doc +/// Comment +//// Four slashes makes the line a normal comment +/// Doc comment got interrupted by the line above + +//! Inner doc comment line 1 +//! Inner doc comment line 2 +/// This is different doc comment since the line starts differently +//! Back to inner doc comment + +---- + +(source_file + (doc_comment) + (line_comment) + (doc_comment) + (line_comment) + (doc_comment) + (doc_comment) + (doc_comment) + (doc_comment)) + ===================================== Greek letters in identifiers ===================================== diff --git a/grammar.js b/grammar.js index 9852e8a4..275e1574 100644 --- a/grammar.js +++ b/grammar.js @@ -38,13 +38,15 @@ const primitive_types = numeric_types.concat(['bool', 'str', 'char']) module.exports = grammar({ name: 'rust', - extras: $ => [/\s/, $.line_comment, $.block_comment], + extras: $ => [/\s/, $.line_comment, $.block_comment, $.doc_comment], externals: $ => [ $._string_content, $.raw_string_literal, $.float_literal, $.block_comment, + $.line_comment, + $.doc_comment ], supertypes: $ => [ @@ -1426,15 +1428,6 @@ module.exports = grammar({ boolean_literal: $ => choice('true', 'false'), - comment: $ => choice( - $.line_comment, - $.block_comment - ), - - line_comment: $ => token(seq( - '//', /.*/ - )), - _path: $ => choice( $.self, alias(choice(...primitive_types), $.identifier), diff --git a/src/scanner.c b/src/scanner.c index 92911b45..d724a716 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -6,6 +6,8 @@ enum TokenType { RAW_STRING_LITERAL, FLOAT_LITERAL, BLOCK_COMMENT, + LINE_COMMENT, + DOC_COMMENT, }; void *tree_sitter_rust_external_scanner_create() { return NULL; } @@ -143,7 +145,76 @@ bool tree_sitter_rust_external_scanner_scan(void *payload, TSLexer *lexer, if (lexer->lookahead == '/') { advance(lexer); + + if ((valid_symbols[LINE_COMMENT] || valid_symbols[DOC_COMMENT]) && lexer->lookahead == '/') { + advance(lexer); + + bool started_with_slash = lexer->lookahead == '/'; + switch (lexer->lookahead) { + case '!': + case '/': { + advance(lexer); + + // If three consecutive slashes were seen and this is the fourth one, + // the line turns back to a normal comment. + // The above rule does not apply for "//!" which is also a doc + // comment, hence why it is relevant to track started_with_slash. + if (started_with_slash == false || lexer->lookahead != '/') { + lexer->result_symbol = DOC_COMMENT; + while (true) { + while (lexer->lookahead != '\n') { + advance(lexer); + } + if (lexer->lookahead == 0) { + break; + } + + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead == '/') { + advance(lexer); + if (started_with_slash) { + if (lexer->lookahead == '/') { + advance(lexer); + // If a fourth slash is found, the line turns back to a normal comment + if (lexer->lookahead == '/') { + break; + } + } else { + break; + } + } else if (lexer->lookahead != '!') { + break; + } + } else { + break; + } + } else { + break; + } + } + } + break; + } + } + + + // Might have broken from the loop above having already processed a doc + // comment + if (lexer->result_symbol != DOC_COMMENT) { + lexer->result_symbol = LINE_COMMENT; + while (lexer->lookahead != '\n' && lexer->lookahead != 0) { + advance(lexer); + } + } + + return true; + } + if (lexer->lookahead != '*') return false; + advance(lexer); bool after_star = false; From 5c30f3d8d60e2188a366405d288901e29d70b090 Mon Sep 17 00:00:00 2001 From: resolritter Date: Sun, 9 Jan 2022 19:04:41 -0300 Subject: [PATCH 2/2] regenerate parser --- src/grammar.json | 41 +- src/node-types.json | 4 + src/parser.c | 97570 +++++++++++++++++++++--------------------- 3 files changed, 48301 insertions(+), 49314 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 463f8f52..5427d079 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8173,35 +8173,6 @@ } ] }, - "comment": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "line_comment" - }, - { - "type": "SYMBOL", - "name": "block_comment" - } - ] - }, - "line_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - } - }, "_path": { "type": "CHOICE", "members": [ @@ -8382,6 +8353,10 @@ { "type": "SYMBOL", "name": "block_comment" + }, + { + "type": "SYMBOL", + "name": "doc_comment" } ], "conflicts": [ @@ -8427,6 +8402,14 @@ { "type": "SYMBOL", "name": "block_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" + }, + { + "type": "SYMBOL", + "name": "doc_comment" } ], "inline": [ diff --git a/src/node-types.json b/src/node-types.json index 9433e4b3..2b64f4cc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4939,6 +4939,10 @@ "type": "default", "named": false }, + { + "type": "doc_comment", + "named": true + }, { "type": "dyn", "named": false diff --git a/src/parser.c b/src/parser.c index da287671..20437227 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,11 +7,11 @@ #define LANGUAGE_VERSION 13 #define STATE_COUNT 2544 -#define LARGE_STATE_COUNT 628 -#define SYMBOL_COUNT 316 +#define LARGE_STATE_COUNT 738 +#define SYMBOL_COUNT 317 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 139 -#define EXTERNAL_TOKEN_COUNT 4 +#define TOKEN_COUNT 140 +#define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 243 @@ -146,195 +146,196 @@ enum { sym_escape_sequence = 127, anon_sym_true = 128, anon_sym_false = 129, - sym_line_comment = 130, - sym_self = 131, - 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_meta_item = 154, - sym_meta_arguments = 155, - sym_mod_item = 156, - sym_foreign_mod_item = 157, - sym_declaration_list = 158, - sym_struct_item = 159, - sym_union_item = 160, - sym_enum_item = 161, - sym_enum_variant_list = 162, - sym_enum_variant = 163, - sym_field_declaration_list = 164, - sym_field_declaration = 165, - sym_ordered_field_declaration_list = 166, - sym_extern_crate_declaration = 167, - sym_const_item = 168, - sym_static_item = 169, - sym_type_item = 170, - sym_function_item = 171, - sym_function_signature_item = 172, - sym_function_modifiers = 173, - sym_where_clause = 174, - sym_where_predicate = 175, - sym_impl_item = 176, - sym_trait_item = 177, - sym_associated_type = 178, - sym_trait_bounds = 179, - sym_higher_ranked_trait_bound = 180, - sym_removed_trait_bound = 181, - sym_type_parameters = 182, - sym_const_parameter = 183, - sym_constrained_type_parameter = 184, - sym_optional_type_parameter = 185, - sym_let_declaration = 186, - sym_use_declaration = 187, - sym__use_clause = 188, - sym_scoped_use_list = 189, - sym_use_list = 190, - sym_use_as_clause = 191, - sym_use_wildcard = 192, - sym_parameters = 193, - sym_self_parameter = 194, - sym_variadic_parameter = 195, - sym_parameter = 196, - sym_extern_modifier = 197, - sym_visibility_modifier = 198, - sym__type = 199, - sym_bracketed_type = 200, - sym_qualified_type = 201, - sym_lifetime = 202, - sym_array_type = 203, - sym_for_lifetimes = 204, - sym_function_type = 205, - sym_tuple_type = 206, - sym_unit_type = 207, - sym_generic_function = 208, - sym_generic_type = 209, - sym_generic_type_with_turbofish = 210, - sym_bounded_type = 211, - sym_type_arguments = 212, - sym_type_binding = 213, - sym_reference_type = 214, - sym_pointer_type = 215, - sym_empty_type = 216, - sym_abstract_type = 217, - sym_dynamic_type = 218, - sym__expression_except_range = 219, - sym__expression = 220, - sym_macro_invocation = 221, - sym_scoped_identifier = 222, - sym_scoped_type_identifier_in_expression_position = 223, - sym_scoped_type_identifier = 224, - sym_range_expression = 225, - sym_unary_expression = 226, - sym_try_expression = 227, - sym_reference_expression = 228, - sym_binary_expression = 229, - sym_assignment_expression = 230, - sym_compound_assignment_expr = 231, - sym_type_cast_expression = 232, - sym_return_expression = 233, - sym_yield_expression = 234, - sym_call_expression = 235, - sym_arguments = 236, - sym_array_expression = 237, - sym_parenthesized_expression = 238, - sym_tuple_expression = 239, - sym_unit_expression = 240, - sym_struct_expression = 241, - sym_field_initializer_list = 242, - sym_shorthand_field_initializer = 243, - sym_field_initializer = 244, - sym_base_field_initializer = 245, - sym_if_expression = 246, - sym_if_let_expression = 247, - sym_else_clause = 248, - sym_match_expression = 249, - sym_match_block = 250, - sym_match_arm = 251, - sym_last_match_arm = 252, - sym_match_pattern = 253, - sym_while_expression = 254, - sym_while_let_expression = 255, - sym_loop_expression = 256, - sym_for_expression = 257, - sym_const_block = 258, - sym_closure_expression = 259, - sym_closure_parameters = 260, - sym_loop_label = 261, - sym_break_expression = 262, - sym_continue_expression = 263, - sym_index_expression = 264, - sym_await_expression = 265, - sym_field_expression = 266, - sym_unsafe_block = 267, - sym_async_block = 268, - sym_block = 269, - sym__pattern = 270, - sym_tuple_pattern = 271, - sym_slice_pattern = 272, - sym_tuple_struct_pattern = 273, - sym_struct_pattern = 274, - sym_field_pattern = 275, - sym_remaining_field_pattern = 276, - sym_mut_pattern = 277, - sym_range_pattern = 278, - sym_ref_pattern = 279, - sym_captured_pattern = 280, - sym_reference_pattern = 281, - sym_or_pattern = 282, - sym__literal = 283, - sym__literal_pattern = 284, - sym_negative_literal = 285, - sym_string_literal = 286, - sym_boolean_literal = 287, - aux_sym_source_file_repeat1 = 288, - aux_sym_macro_definition_repeat1 = 289, - aux_sym_token_tree_pattern_repeat1 = 290, - aux_sym_token_tree_repeat1 = 291, - aux_sym_meta_arguments_repeat1 = 292, - aux_sym_declaration_list_repeat1 = 293, - aux_sym_enum_variant_list_repeat1 = 294, - aux_sym_enum_variant_list_repeat2 = 295, - aux_sym_field_declaration_list_repeat1 = 296, - aux_sym_ordered_field_declaration_list_repeat1 = 297, - aux_sym_function_modifiers_repeat1 = 298, - aux_sym_where_clause_repeat1 = 299, - aux_sym_trait_bounds_repeat1 = 300, - aux_sym_type_parameters_repeat1 = 301, - aux_sym_use_list_repeat1 = 302, - aux_sym_parameters_repeat1 = 303, - aux_sym_for_lifetimes_repeat1 = 304, - aux_sym_tuple_type_repeat1 = 305, - aux_sym_type_arguments_repeat1 = 306, - aux_sym_arguments_repeat1 = 307, - aux_sym_array_expression_repeat1 = 308, - aux_sym_tuple_expression_repeat1 = 309, - aux_sym_field_initializer_list_repeat1 = 310, - aux_sym_match_block_repeat1 = 311, - aux_sym_closure_parameters_repeat1 = 312, - aux_sym_tuple_pattern_repeat1 = 313, - aux_sym_struct_pattern_repeat1 = 314, - aux_sym_string_literal_repeat1 = 315, - alias_sym_field_identifier = 316, - alias_sym_shorthand_field_identifier = 317, - alias_sym_type_identifier = 318, + sym_self = 130, + sym_super = 131, + sym_crate = 132, + sym_metavariable = 133, + sym__string_content = 134, + sym_raw_string_literal = 135, + sym_float_literal = 136, + sym_block_comment = 137, + sym_line_comment = 138, + sym_doc_comment = 139, + sym_source_file = 140, + sym__statement = 141, + sym_empty_statement = 142, + sym__expression_statement = 143, + sym_macro_definition = 144, + sym_macro_rule = 145, + sym__token_pattern = 146, + sym_token_tree_pattern = 147, + sym_token_binding_pattern = 148, + sym_token_repetition_pattern = 149, + sym_fragment_specifier = 150, + sym_token_tree = 151, + sym_token_repetition = 152, + sym_attribute_item = 153, + sym_inner_attribute_item = 154, + sym_meta_item = 155, + sym_meta_arguments = 156, + sym_mod_item = 157, + sym_foreign_mod_item = 158, + sym_declaration_list = 159, + sym_struct_item = 160, + sym_union_item = 161, + sym_enum_item = 162, + sym_enum_variant_list = 163, + sym_enum_variant = 164, + sym_field_declaration_list = 165, + sym_field_declaration = 166, + sym_ordered_field_declaration_list = 167, + sym_extern_crate_declaration = 168, + sym_const_item = 169, + sym_static_item = 170, + sym_type_item = 171, + sym_function_item = 172, + sym_function_signature_item = 173, + sym_function_modifiers = 174, + sym_where_clause = 175, + sym_where_predicate = 176, + sym_impl_item = 177, + sym_trait_item = 178, + sym_associated_type = 179, + sym_trait_bounds = 180, + sym_higher_ranked_trait_bound = 181, + sym_removed_trait_bound = 182, + sym_type_parameters = 183, + sym_const_parameter = 184, + sym_constrained_type_parameter = 185, + sym_optional_type_parameter = 186, + sym_let_declaration = 187, + sym_use_declaration = 188, + sym__use_clause = 189, + sym_scoped_use_list = 190, + sym_use_list = 191, + sym_use_as_clause = 192, + sym_use_wildcard = 193, + sym_parameters = 194, + sym_self_parameter = 195, + sym_variadic_parameter = 196, + sym_parameter = 197, + sym_extern_modifier = 198, + sym_visibility_modifier = 199, + sym__type = 200, + sym_bracketed_type = 201, + sym_qualified_type = 202, + sym_lifetime = 203, + sym_array_type = 204, + sym_for_lifetimes = 205, + sym_function_type = 206, + sym_tuple_type = 207, + sym_unit_type = 208, + sym_generic_function = 209, + sym_generic_type = 210, + sym_generic_type_with_turbofish = 211, + sym_bounded_type = 212, + sym_type_arguments = 213, + sym_type_binding = 214, + sym_reference_type = 215, + sym_pointer_type = 216, + sym_empty_type = 217, + sym_abstract_type = 218, + sym_dynamic_type = 219, + sym__expression_except_range = 220, + sym__expression = 221, + sym_macro_invocation = 222, + sym_scoped_identifier = 223, + sym_scoped_type_identifier_in_expression_position = 224, + sym_scoped_type_identifier = 225, + sym_range_expression = 226, + sym_unary_expression = 227, + sym_try_expression = 228, + sym_reference_expression = 229, + sym_binary_expression = 230, + sym_assignment_expression = 231, + sym_compound_assignment_expr = 232, + sym_type_cast_expression = 233, + sym_return_expression = 234, + sym_yield_expression = 235, + sym_call_expression = 236, + sym_arguments = 237, + sym_array_expression = 238, + sym_parenthesized_expression = 239, + sym_tuple_expression = 240, + sym_unit_expression = 241, + sym_struct_expression = 242, + sym_field_initializer_list = 243, + sym_shorthand_field_initializer = 244, + sym_field_initializer = 245, + sym_base_field_initializer = 246, + sym_if_expression = 247, + sym_if_let_expression = 248, + sym_else_clause = 249, + sym_match_expression = 250, + sym_match_block = 251, + sym_match_arm = 252, + sym_last_match_arm = 253, + sym_match_pattern = 254, + sym_while_expression = 255, + sym_while_let_expression = 256, + sym_loop_expression = 257, + sym_for_expression = 258, + sym_const_block = 259, + sym_closure_expression = 260, + sym_closure_parameters = 261, + sym_loop_label = 262, + sym_break_expression = 263, + sym_continue_expression = 264, + sym_index_expression = 265, + sym_await_expression = 266, + sym_field_expression = 267, + sym_unsafe_block = 268, + sym_async_block = 269, + sym_block = 270, + sym__pattern = 271, + sym_tuple_pattern = 272, + sym_slice_pattern = 273, + sym_tuple_struct_pattern = 274, + sym_struct_pattern = 275, + sym_field_pattern = 276, + sym_remaining_field_pattern = 277, + sym_mut_pattern = 278, + sym_range_pattern = 279, + sym_ref_pattern = 280, + sym_captured_pattern = 281, + sym_reference_pattern = 282, + sym_or_pattern = 283, + sym__literal = 284, + sym__literal_pattern = 285, + sym_negative_literal = 286, + sym_string_literal = 287, + sym_boolean_literal = 288, + aux_sym_source_file_repeat1 = 289, + aux_sym_macro_definition_repeat1 = 290, + aux_sym_token_tree_pattern_repeat1 = 291, + aux_sym_token_tree_repeat1 = 292, + aux_sym_meta_arguments_repeat1 = 293, + aux_sym_declaration_list_repeat1 = 294, + aux_sym_enum_variant_list_repeat1 = 295, + aux_sym_enum_variant_list_repeat2 = 296, + aux_sym_field_declaration_list_repeat1 = 297, + aux_sym_ordered_field_declaration_list_repeat1 = 298, + aux_sym_function_modifiers_repeat1 = 299, + aux_sym_where_clause_repeat1 = 300, + aux_sym_trait_bounds_repeat1 = 301, + aux_sym_type_parameters_repeat1 = 302, + aux_sym_use_list_repeat1 = 303, + aux_sym_parameters_repeat1 = 304, + aux_sym_for_lifetimes_repeat1 = 305, + aux_sym_tuple_type_repeat1 = 306, + aux_sym_type_arguments_repeat1 = 307, + aux_sym_arguments_repeat1 = 308, + aux_sym_array_expression_repeat1 = 309, + aux_sym_tuple_expression_repeat1 = 310, + aux_sym_field_initializer_list_repeat1 = 311, + aux_sym_match_block_repeat1 = 312, + aux_sym_closure_parameters_repeat1 = 313, + aux_sym_tuple_pattern_repeat1 = 314, + aux_sym_struct_pattern_repeat1 = 315, + aux_sym_string_literal_repeat1 = 316, + alias_sym_field_identifier = 317, + alias_sym_shorthand_field_identifier = 318, + alias_sym_type_identifier = 319, }; static const char * const ts_symbol_names[] = { @@ -468,7 +469,6 @@ static const char * const ts_symbol_names[] = { [sym_escape_sequence] = "escape_sequence", [anon_sym_true] = "true", [anon_sym_false] = "false", - [sym_line_comment] = "line_comment", [sym_self] = "self", [sym_super] = "super", [sym_crate] = "crate", @@ -477,6 +477,8 @@ static const char * const ts_symbol_names[] = { [sym_raw_string_literal] = "raw_string_literal", [sym_float_literal] = "float_literal", [sym_block_comment] = "block_comment", + [sym_line_comment] = "line_comment", + [sym_doc_comment] = "doc_comment", [sym_source_file] = "source_file", [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", @@ -790,7 +792,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_escape_sequence] = sym_escape_sequence, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, - [sym_line_comment] = sym_line_comment, [sym_self] = sym_self, [sym_super] = sym_super, [sym_crate] = sym_crate, @@ -799,6 +800,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_raw_string_literal] = sym_raw_string_literal, [sym_float_literal] = sym_float_literal, [sym_block_comment] = sym_block_comment, + [sym_line_comment] = sym_line_comment, + [sym_doc_comment] = sym_doc_comment, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, @@ -1502,10 +1505,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_line_comment] = { - .visible = true, - .named = true, - }, [sym_self] = { .visible = true, .named = true, @@ -1538,6 +1537,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [sym_doc_comment] = { + .visible = true, + .named = true, + }, [sym_source_file] = { .visible = true, .named = true, @@ -9984,789 +9991,773 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(57); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(106); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '@') ADVANCE(132); + if (lookahead == '[') ADVANCE(65); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(54) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(160); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(106); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(29); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(29); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(75); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(107); if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(75); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(104); if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '[') ADVANCE(65); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(31); if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(88); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(93); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(88); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '@') ADVANCE(132); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(30); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(69); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '_') ADVANCE(78); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(79); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(160); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '0') ADVANCE(137); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '_') ADVANCE(78); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(79); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(160); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '"') ADVANCE(142); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(85); + if (lookahead == 'b') ADVANCE(148); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); + if (lookahead == '#') ADVANCE(82); + if (lookahead == ',') ADVANCE(89); if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == ':') ADVANCE(67); + if (lookahead == '<') ADVANCE(91); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(149); + if (lookahead == '\'') ADVANCE(144); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '\\') ADVANCE(35); if (lookahead != 0) ADVANCE(15); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(31); if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(88); + if (lookahead == '>') ADVANCE(93); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(73); + if (lookahead == '?') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); + lookahead == ' ') ADVANCE(71); + if (lookahead != 0) ADVANCE(72); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(105); + if (lookahead == '.') ADVANCE(100); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(106); + if (lookahead == '.') ADVANCE(101); END_STATE(); case 22: if (lookahead == '.') ADVANCE(19); END_STATE(); case 23: - if (lookahead == '/') ADVANCE(151); + if (lookahead == '1') ADVANCE(25); + if (lookahead == '3') ADVANCE(24); + if (lookahead == '6') ADVANCE(27); + if (lookahead == '8') ADVANCE(133); + if (lookahead == 's') ADVANCE(33); END_STATE(); case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); + if (lookahead == '2') ADVANCE(133); END_STATE(); case 25: - if (lookahead == '2') ADVANCE(138); + if (lookahead == '2') ADVANCE(28); + if (lookahead == '6') ADVANCE(133); END_STATE(); case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); + if (lookahead == '3') ADVANCE(24); + if (lookahead == '6') ADVANCE(27); END_STATE(); case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); + if (lookahead == '4') ADVANCE(133); END_STATE(); case 28: - if (lookahead == '4') ADVANCE(138); + if (lookahead == '8') ADVANCE(133); END_STATE(); case 29: - if (lookahead == '8') ADVANCE(138); + if (lookahead == ':') ADVANCE(95); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(100); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(90); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(95); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'i') ADVANCE(36); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(37); + if (lookahead == 'u') ADVANCE(37); + if (lookahead == 'x') ADVANCE(48); + if (lookahead != 0) ADVANCE(145); END_STATE(); case 35: if (lookahead == 'u') ADVANCE(38); if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); + if (lookahead == 'z') ADVANCE(32); END_STATE(); case 37: - if (lookahead == 'z') ADVANCE(33); + if (lookahead == '{') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 38: if (lookahead == '{') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 39: - if (lookahead == '{') ADVANCE(48); + if (lookahead == '}') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 40: - if (lookahead == '}') ADVANCE(15); + if (lookahead == '}') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 42: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(143); + lookahead == '_') ADVANCE(138); END_STATE(); - case 43: + case 42: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + lookahead == '_') ADVANCE(139); END_STATE(); - case 44: + case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); END_STATE(); + case 44: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(145); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 50: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(161); END_STATE(); case 53: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (eof) ADVANCE(57); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(106); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '@') ADVANCE(132); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(57); + if (lookahead == '!') ADVANCE(84); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '%') ADVANCE(120); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(74); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(86); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == '^') ADVANCE(112); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(111); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(57); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(82); + if (lookahead == '$') ADVANCE(52); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(73); + if (lookahead == ',') ADVANCE(89); + if (lookahead == '-') ADVANCE(107); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(77); + if (lookahead == '[') ADVANCE(65); + if (lookahead == ']') ADVANCE(66); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(149); + if (lookahead == '{') ADVANCE(62); + if (lookahead == '|') ADVANCE(110); + if (lookahead == '}') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(160); END_STATE(); case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 58: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 68: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(95); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); - END_STATE(); - case 70: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '!' || lookahead == '#' || @@ -10777,96 +10768,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(79); END_STATE(); - case 71: + case 70: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 72: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); - if (lookahead == '*' || - lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(161); END_STATE(); - case 73: + case 71: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 74: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); + lookahead == ' ') ADVANCE(71); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(72); END_STATE(); - case 75: + case 72: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(72); END_STATE(); - case 76: + case 73: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 77: + case 74: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(121); END_STATE(); - case 78: + case 75: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 79: + case 76: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(123); END_STATE(); - case 80: + case 77: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(84); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(82); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); - END_STATE(); - case 83: + case 78: ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '_') ADVANCE(78); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10874,11 +10821,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('*' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(79); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(160); END_STATE(); - case 84: + case 79: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10889,380 +10836,372 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(84); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + lookahead == '~') ADVANCE(79); END_STATE(); - case 85: + case 80: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 86: + case 81: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '\\') ADVANCE(35); if (lookahead != 0) ADVANCE(15); END_STATE(); - case 87: + case 82: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 88: + case 83: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 89: + case 84: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(114); END_STATE(); - case 90: + case 85: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 91: + case 86: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(113); END_STATE(); - case 92: + case 87: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); + if (lookahead == '=') ADVANCE(113); + if (lookahead == '>') ADVANCE(64); END_STATE(); - case 93: + case 88: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); + if (lookahead == '>') ADVANCE(64); END_STATE(); - case 94: + case 89: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 95: + case 90: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 96: + case 91: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 97: + case 92: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); + if (lookahead == '<') ADVANCE(117); + if (lookahead == '=') ADVANCE(115); END_STATE(); - case 98: + case 93: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 99: + case 94: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(118); END_STATE(); - case 100: + case 95: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 101: + case 96: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 102: + case 97: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '=') ADVANCE(126); END_STATE(); - case 103: + case 98: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 104: + case 99: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 105: + case 100: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 106: + case 101: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); + if (lookahead == '.') ADVANCE(98); END_STATE(); - case 107: + case 102: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '.') ADVANCE(98); + if (lookahead == '=') ADVANCE(103); END_STATE(); - case 108: + case 103: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 109: + case 104: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 110: + case 105: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(122); END_STATE(); - case 111: + case 106: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); + if (lookahead == '=') ADVANCE(122); + if (lookahead == '>') ADVANCE(90); END_STATE(); - case 112: + case 107: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); + if (lookahead == '>') ADVANCE(90); END_STATE(); - case 113: + case 108: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 114: + case 109: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 115: + case 110: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 116: + case 111: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '|') ADVANCE(109); END_STATE(); - case 117: + case 112: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 118: + case 113: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 119: + case 114: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 120: + case 115: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 121: + case 116: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 122: + case 117: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 123: + case 118: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); + if (lookahead == '=') ADVANCE(130); END_STATE(); - case 124: + case 119: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '=') ADVANCE(124); END_STATE(); - case 125: + case 120: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); + if (lookahead == '=') ADVANCE(125); END_STATE(); - case 126: + case 121: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 127: + case 122: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 128: + case 123: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 129: + case 124: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 130: + case 125: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 131: + case 126: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 132: + case 127: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 133: + case 128: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 134: + case 129: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 135: + case 130: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 136: + case 131: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); + if (lookahead == '.') ADVANCE(102); END_STATE(); - case 137: + case 132: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 138: + case 133: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 139: + case 134: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '2') ADVANCE(141); + if (lookahead == 'f') ADVANCE(135); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 140: + case 135: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '3') ADVANCE(134); + if (lookahead == '6') ADVANCE(136); + if (lookahead == 'f') ADVANCE(135); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 141: + case 136: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '4') ADVANCE(141); + if (lookahead == 'f') ADVANCE(135); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 142: + case 137: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); + if (lookahead == 'b') ADVANCE(41); + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'u') ADVANCE(23); + if (lookahead == 'x') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(140); END_STATE(); - case 143: + case 138: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(143); + lookahead == '_') ADVANCE(138); END_STATE(); - case 144: + case 139: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + lookahead == '_') ADVANCE(139); END_STATE(); - case 145: + case 140: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(140); END_STATE(); - case 146: + case 141: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(135); + if (lookahead == 'i') ADVANCE(23); + if (lookahead == 'u') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 147: + case 142: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 148: + case 143: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 149: + case 144: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 150: + case 145: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 151: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 152: + case 146: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '!') ADVANCE(59); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 153: + case 147: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); + if (lookahead == '"') ADVANCE(142); if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 154: + case 148: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(142); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 155: + case 149: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '#') ADVANCE(53); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 156: + case 150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + if (lookahead == '_') ADVANCE(157); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(160); END_STATE(); - case 157: + case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(158); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + if (lookahead == 'a') ADVANCE(152); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(160); END_STATE(); - case 158: + case 152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(156); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 159: + case 153: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(158); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 160: + case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'l') ADVANCE(153); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 161: + case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'o') ADVANCE(150); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 162: + case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(155); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 163: + case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(159); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 164: + case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 's') ADVANCE(146); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 165: + case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'u') ADVANCE(154); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 166: + case 160: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(160); END_STATE(); - case 167: + case 161: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(161); END_STATE(); default: return false; @@ -11999,22 +11938,22 @@ 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 = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, + [1] = {.lex_state = 56, .external_lex_state = 2}, + [2] = {.lex_state = 56, .external_lex_state = 2}, + [3] = {.lex_state = 56, .external_lex_state = 2}, + [4] = {.lex_state = 56, .external_lex_state = 2}, + [5] = {.lex_state = 56, .external_lex_state = 2}, + [6] = {.lex_state = 56, .external_lex_state = 2}, + [7] = {.lex_state = 56, .external_lex_state = 2}, + [8] = {.lex_state = 56, .external_lex_state = 2}, + [9] = {.lex_state = 56, .external_lex_state = 2}, + [10] = {.lex_state = 56, .external_lex_state = 2}, + [11] = {.lex_state = 56, .external_lex_state = 2}, + [12] = {.lex_state = 56, .external_lex_state = 2}, + [13] = {.lex_state = 56, .external_lex_state = 2}, + [14] = {.lex_state = 56, .external_lex_state = 2}, + [15] = {.lex_state = 56, .external_lex_state = 2}, + [16] = {.lex_state = 56, .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}, @@ -12043,9 +11982,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 56, .external_lex_state = 2}, + [45] = {.lex_state = 55, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, + [47] = {.lex_state = 55, .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}, @@ -12058,55 +11997,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 56, .external_lex_state = 2}, + [60] = {.lex_state = 55, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 56, .external_lex_state = 2}, + [64] = {.lex_state = 55, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, [68] = {.lex_state = 5, .external_lex_state = 2}, [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, + [71] = {.lex_state = 55, .external_lex_state = 2}, [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 56, .external_lex_state = 2}, + [73] = {.lex_state = 55, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 56, .external_lex_state = 2}, + [77] = {.lex_state = 55, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 56, .external_lex_state = 2}, + [79] = {.lex_state = 55, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 56, .external_lex_state = 2}, + [81] = {.lex_state = 55, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 56, .external_lex_state = 2}, + [85] = {.lex_state = 55, .external_lex_state = 2}, [86] = {.lex_state = 5, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .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 = 56, .external_lex_state = 2}, + [92] = {.lex_state = 55, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 56, .external_lex_state = 2}, - [96] = {.lex_state = 56, .external_lex_state = 2}, + [95] = {.lex_state = 55, .external_lex_state = 2}, + [96] = {.lex_state = 55, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 56, .external_lex_state = 2}, + [99] = {.lex_state = 55, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 56, .external_lex_state = 2}, + [102] = {.lex_state = 55, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 56, .external_lex_state = 2}, + [108] = {.lex_state = 55, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, @@ -12121,33 +12060,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 56, .external_lex_state = 2}, + [123] = {.lex_state = 55, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 56, .external_lex_state = 2}, + [126] = {.lex_state = 55, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 56, .external_lex_state = 2}, + [131] = {.lex_state = 55, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 56, .external_lex_state = 2}, + [135] = {.lex_state = 55, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, [137] = {.lex_state = 5, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, - [140] = {.lex_state = 56, .external_lex_state = 2}, + [140] = {.lex_state = 55, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 56, .external_lex_state = 2}, + [142] = {.lex_state = 55, .external_lex_state = 2}, [143] = {.lex_state = 5, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 56, .external_lex_state = 2}, - [149] = {.lex_state = 56, .external_lex_state = 2}, + [148] = {.lex_state = 55, .external_lex_state = 2}, + [149] = {.lex_state = 55, .external_lex_state = 2}, [150] = {.lex_state = 5, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, @@ -12158,30 +12097,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 56, .external_lex_state = 2}, + [160] = {.lex_state = 55, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 56, .external_lex_state = 2}, + [163] = {.lex_state = 55, .external_lex_state = 2}, [164] = {.lex_state = 5, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 56, .external_lex_state = 2}, + [166] = {.lex_state = 55, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 56, .external_lex_state = 2}, + [173] = {.lex_state = 55, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 56, .external_lex_state = 2}, + [178] = {.lex_state = 55, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 5, .external_lex_state = 2}, - [182] = {.lex_state = 56, .external_lex_state = 2}, - [183] = {.lex_state = 56, .external_lex_state = 2}, + [182] = {.lex_state = 55, .external_lex_state = 2}, + [183] = {.lex_state = 55, .external_lex_state = 2}, [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 6, .external_lex_state = 2}, [186] = {.lex_state = 6, .external_lex_state = 2}, @@ -12252,234 +12191,234 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 12, .external_lex_state = 2}, [252] = {.lex_state = 4, .external_lex_state = 3}, [253] = {.lex_state = 4, .external_lex_state = 3}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [268] = {.lex_state = 57, .external_lex_state = 2}, - [269] = {.lex_state = 57, .external_lex_state = 2}, - [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 57, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 57, .external_lex_state = 2}, - [275] = {.lex_state = 57, .external_lex_state = 2}, - [276] = {.lex_state = 57, .external_lex_state = 2}, - [277] = {.lex_state = 57, .external_lex_state = 2}, - [278] = {.lex_state = 57, .external_lex_state = 2}, - [279] = {.lex_state = 57, .external_lex_state = 2}, + [254] = {.lex_state = 56, .external_lex_state = 2}, + [255] = {.lex_state = 56, .external_lex_state = 2}, + [256] = {.lex_state = 56, .external_lex_state = 2}, + [257] = {.lex_state = 56, .external_lex_state = 2}, + [258] = {.lex_state = 56, .external_lex_state = 2}, + [259] = {.lex_state = 56, .external_lex_state = 2}, + [260] = {.lex_state = 56, .external_lex_state = 2}, + [261] = {.lex_state = 56, .external_lex_state = 2}, + [262] = {.lex_state = 56, .external_lex_state = 2}, + [263] = {.lex_state = 56, .external_lex_state = 2}, + [264] = {.lex_state = 56, .external_lex_state = 2}, + [265] = {.lex_state = 56, .external_lex_state = 2}, + [266] = {.lex_state = 56, .external_lex_state = 2}, + [267] = {.lex_state = 56, .external_lex_state = 2}, + [268] = {.lex_state = 56, .external_lex_state = 2}, + [269] = {.lex_state = 56, .external_lex_state = 2}, + [270] = {.lex_state = 56, .external_lex_state = 2}, + [271] = {.lex_state = 56, .external_lex_state = 2}, + [272] = {.lex_state = 56, .external_lex_state = 2}, + [273] = {.lex_state = 56, .external_lex_state = 2}, + [274] = {.lex_state = 56, .external_lex_state = 2}, + [275] = {.lex_state = 56, .external_lex_state = 2}, + [276] = {.lex_state = 56, .external_lex_state = 2}, + [277] = {.lex_state = 56, .external_lex_state = 2}, + [278] = {.lex_state = 56, .external_lex_state = 2}, + [279] = {.lex_state = 56, .external_lex_state = 2}, [280] = {.lex_state = 5, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, - [282] = {.lex_state = 57, .external_lex_state = 2}, - [283] = {.lex_state = 57, .external_lex_state = 2}, - [284] = {.lex_state = 57, .external_lex_state = 2}, - [285] = {.lex_state = 57, .external_lex_state = 2}, - [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 57, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 57, .external_lex_state = 2}, - [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 57, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 57, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 57, .external_lex_state = 2}, - [303] = {.lex_state = 57, .external_lex_state = 2}, - [304] = {.lex_state = 57, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 57, .external_lex_state = 2}, - [314] = {.lex_state = 57, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 57, .external_lex_state = 2}, - [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 57, .external_lex_state = 2}, - [320] = {.lex_state = 57, .external_lex_state = 2}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 57, .external_lex_state = 2}, - [323] = {.lex_state = 57, .external_lex_state = 2}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [326] = {.lex_state = 57, .external_lex_state = 2}, - [327] = {.lex_state = 57, .external_lex_state = 2}, - [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 57, .external_lex_state = 2}, - [331] = {.lex_state = 57, .external_lex_state = 2}, - [332] = {.lex_state = 57, .external_lex_state = 2}, - [333] = {.lex_state = 57, .external_lex_state = 2}, - [334] = {.lex_state = 57, .external_lex_state = 2}, - [335] = {.lex_state = 57, .external_lex_state = 2}, - [336] = {.lex_state = 57, .external_lex_state = 2}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [342] = {.lex_state = 57, .external_lex_state = 2}, - [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, - [346] = {.lex_state = 57, .external_lex_state = 2}, - [347] = {.lex_state = 57, .external_lex_state = 2}, - [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 57, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, - [357] = {.lex_state = 57, .external_lex_state = 2}, - [358] = {.lex_state = 57, .external_lex_state = 2}, - [359] = {.lex_state = 57, .external_lex_state = 2}, - [360] = {.lex_state = 57, .external_lex_state = 2}, + [281] = {.lex_state = 56, .external_lex_state = 2}, + [282] = {.lex_state = 56, .external_lex_state = 2}, + [283] = {.lex_state = 56, .external_lex_state = 2}, + [284] = {.lex_state = 56, .external_lex_state = 2}, + [285] = {.lex_state = 56, .external_lex_state = 2}, + [286] = {.lex_state = 56, .external_lex_state = 2}, + [287] = {.lex_state = 56, .external_lex_state = 2}, + [288] = {.lex_state = 56, .external_lex_state = 2}, + [289] = {.lex_state = 56, .external_lex_state = 2}, + [290] = {.lex_state = 56, .external_lex_state = 2}, + [291] = {.lex_state = 56, .external_lex_state = 2}, + [292] = {.lex_state = 56, .external_lex_state = 2}, + [293] = {.lex_state = 56, .external_lex_state = 2}, + [294] = {.lex_state = 56, .external_lex_state = 2}, + [295] = {.lex_state = 56, .external_lex_state = 2}, + [296] = {.lex_state = 56, .external_lex_state = 2}, + [297] = {.lex_state = 56, .external_lex_state = 2}, + [298] = {.lex_state = 56, .external_lex_state = 2}, + [299] = {.lex_state = 56, .external_lex_state = 2}, + [300] = {.lex_state = 56, .external_lex_state = 2}, + [301] = {.lex_state = 56, .external_lex_state = 2}, + [302] = {.lex_state = 56, .external_lex_state = 2}, + [303] = {.lex_state = 56, .external_lex_state = 2}, + [304] = {.lex_state = 56, .external_lex_state = 2}, + [305] = {.lex_state = 56, .external_lex_state = 2}, + [306] = {.lex_state = 56, .external_lex_state = 2}, + [307] = {.lex_state = 56, .external_lex_state = 2}, + [308] = {.lex_state = 56, .external_lex_state = 2}, + [309] = {.lex_state = 56, .external_lex_state = 2}, + [310] = {.lex_state = 56, .external_lex_state = 2}, + [311] = {.lex_state = 56, .external_lex_state = 2}, + [312] = {.lex_state = 56, .external_lex_state = 2}, + [313] = {.lex_state = 56, .external_lex_state = 2}, + [314] = {.lex_state = 56, .external_lex_state = 2}, + [315] = {.lex_state = 56, .external_lex_state = 2}, + [316] = {.lex_state = 56, .external_lex_state = 2}, + [317] = {.lex_state = 56, .external_lex_state = 2}, + [318] = {.lex_state = 56, .external_lex_state = 2}, + [319] = {.lex_state = 56, .external_lex_state = 2}, + [320] = {.lex_state = 56, .external_lex_state = 2}, + [321] = {.lex_state = 56, .external_lex_state = 2}, + [322] = {.lex_state = 56, .external_lex_state = 2}, + [323] = {.lex_state = 56, .external_lex_state = 2}, + [324] = {.lex_state = 56, .external_lex_state = 2}, + [325] = {.lex_state = 56, .external_lex_state = 2}, + [326] = {.lex_state = 56, .external_lex_state = 2}, + [327] = {.lex_state = 56, .external_lex_state = 2}, + [328] = {.lex_state = 56, .external_lex_state = 2}, + [329] = {.lex_state = 56, .external_lex_state = 2}, + [330] = {.lex_state = 56, .external_lex_state = 2}, + [331] = {.lex_state = 56, .external_lex_state = 2}, + [332] = {.lex_state = 56, .external_lex_state = 2}, + [333] = {.lex_state = 56, .external_lex_state = 2}, + [334] = {.lex_state = 56, .external_lex_state = 2}, + [335] = {.lex_state = 56, .external_lex_state = 2}, + [336] = {.lex_state = 56, .external_lex_state = 2}, + [337] = {.lex_state = 56, .external_lex_state = 2}, + [338] = {.lex_state = 56, .external_lex_state = 2}, + [339] = {.lex_state = 56, .external_lex_state = 2}, + [340] = {.lex_state = 56, .external_lex_state = 2}, + [341] = {.lex_state = 56, .external_lex_state = 2}, + [342] = {.lex_state = 56, .external_lex_state = 2}, + [343] = {.lex_state = 56, .external_lex_state = 2}, + [344] = {.lex_state = 56, .external_lex_state = 2}, + [345] = {.lex_state = 56, .external_lex_state = 2}, + [346] = {.lex_state = 56, .external_lex_state = 2}, + [347] = {.lex_state = 56, .external_lex_state = 2}, + [348] = {.lex_state = 56, .external_lex_state = 2}, + [349] = {.lex_state = 56, .external_lex_state = 2}, + [350] = {.lex_state = 56, .external_lex_state = 2}, + [351] = {.lex_state = 56, .external_lex_state = 2}, + [352] = {.lex_state = 56, .external_lex_state = 2}, + [353] = {.lex_state = 56, .external_lex_state = 2}, + [354] = {.lex_state = 56, .external_lex_state = 2}, + [355] = {.lex_state = 56, .external_lex_state = 2}, + [356] = {.lex_state = 56, .external_lex_state = 2}, + [357] = {.lex_state = 56, .external_lex_state = 2}, + [358] = {.lex_state = 56, .external_lex_state = 2}, + [359] = {.lex_state = 56, .external_lex_state = 2}, + [360] = {.lex_state = 56, .external_lex_state = 2}, [361] = {.lex_state = 5, .external_lex_state = 2}, - [362] = {.lex_state = 57, .external_lex_state = 2}, - [363] = {.lex_state = 57, .external_lex_state = 2}, - [364] = {.lex_state = 57, .external_lex_state = 2}, - [365] = {.lex_state = 57, .external_lex_state = 2}, - [366] = {.lex_state = 57, .external_lex_state = 2}, - [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, - [369] = {.lex_state = 57, .external_lex_state = 2}, - [370] = {.lex_state = 57, .external_lex_state = 2}, - [371] = {.lex_state = 57, .external_lex_state = 2}, - [372] = {.lex_state = 57, .external_lex_state = 2}, - [373] = {.lex_state = 57, .external_lex_state = 2}, - [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, - [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, - [383] = {.lex_state = 57, .external_lex_state = 2}, - [384] = {.lex_state = 57, .external_lex_state = 2}, - [385] = {.lex_state = 57, .external_lex_state = 2}, - [386] = {.lex_state = 57, .external_lex_state = 2}, + [362] = {.lex_state = 56, .external_lex_state = 2}, + [363] = {.lex_state = 56, .external_lex_state = 2}, + [364] = {.lex_state = 56, .external_lex_state = 2}, + [365] = {.lex_state = 56, .external_lex_state = 2}, + [366] = {.lex_state = 56, .external_lex_state = 2}, + [367] = {.lex_state = 56, .external_lex_state = 2}, + [368] = {.lex_state = 56, .external_lex_state = 2}, + [369] = {.lex_state = 56, .external_lex_state = 2}, + [370] = {.lex_state = 56, .external_lex_state = 2}, + [371] = {.lex_state = 56, .external_lex_state = 2}, + [372] = {.lex_state = 56, .external_lex_state = 2}, + [373] = {.lex_state = 56, .external_lex_state = 2}, + [374] = {.lex_state = 56, .external_lex_state = 2}, + [375] = {.lex_state = 56, .external_lex_state = 2}, + [376] = {.lex_state = 56, .external_lex_state = 2}, + [377] = {.lex_state = 56, .external_lex_state = 2}, + [378] = {.lex_state = 56, .external_lex_state = 2}, + [379] = {.lex_state = 56, .external_lex_state = 2}, + [380] = {.lex_state = 56, .external_lex_state = 2}, + [381] = {.lex_state = 56, .external_lex_state = 2}, + [382] = {.lex_state = 56, .external_lex_state = 2}, + [383] = {.lex_state = 56, .external_lex_state = 2}, + [384] = {.lex_state = 56, .external_lex_state = 2}, + [385] = {.lex_state = 56, .external_lex_state = 2}, + [386] = {.lex_state = 56, .external_lex_state = 2}, [387] = {.lex_state = 5, .external_lex_state = 2}, - [388] = {.lex_state = 57, .external_lex_state = 2}, - [389] = {.lex_state = 57, .external_lex_state = 2}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, - [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, - [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, - [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 2}, - [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 57, .external_lex_state = 2}, - [417] = {.lex_state = 57, .external_lex_state = 2}, - [418] = {.lex_state = 57, .external_lex_state = 2}, - [419] = {.lex_state = 57, .external_lex_state = 2}, - [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 57, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 57, .external_lex_state = 2}, - [429] = {.lex_state = 57, .external_lex_state = 2}, - [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 57, .external_lex_state = 2}, - [432] = {.lex_state = 57, .external_lex_state = 2}, - [433] = {.lex_state = 57, .external_lex_state = 2}, - [434] = {.lex_state = 57, .external_lex_state = 2}, - [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, - [437] = {.lex_state = 57, .external_lex_state = 2}, - [438] = {.lex_state = 57, .external_lex_state = 2}, - [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 57, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 57, .external_lex_state = 2}, - [456] = {.lex_state = 57, .external_lex_state = 2}, - [457] = {.lex_state = 57, .external_lex_state = 2}, - [458] = {.lex_state = 57, .external_lex_state = 2}, - [459] = {.lex_state = 57, .external_lex_state = 2}, - [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 57, .external_lex_state = 2}, - [462] = {.lex_state = 57, .external_lex_state = 2}, - [463] = {.lex_state = 57, .external_lex_state = 2}, - [464] = {.lex_state = 57, .external_lex_state = 2}, - [465] = {.lex_state = 57, .external_lex_state = 2}, - [466] = {.lex_state = 57, .external_lex_state = 2}, - [467] = {.lex_state = 57, .external_lex_state = 2}, - [468] = {.lex_state = 57, .external_lex_state = 2}, - [469] = {.lex_state = 57, .external_lex_state = 2}, - [470] = {.lex_state = 57, .external_lex_state = 2}, - [471] = {.lex_state = 57, .external_lex_state = 2}, - [472] = {.lex_state = 57, .external_lex_state = 2}, - [473] = {.lex_state = 57, .external_lex_state = 2}, - [474] = {.lex_state = 57, .external_lex_state = 2}, - [475] = {.lex_state = 57, .external_lex_state = 2}, - [476] = {.lex_state = 57, .external_lex_state = 2}, - [477] = {.lex_state = 57, .external_lex_state = 2}, - [478] = {.lex_state = 57, .external_lex_state = 2}, - [479] = {.lex_state = 57, .external_lex_state = 2}, - [480] = {.lex_state = 57, .external_lex_state = 2}, - [481] = {.lex_state = 57, .external_lex_state = 2}, + [388] = {.lex_state = 56, .external_lex_state = 2}, + [389] = {.lex_state = 56, .external_lex_state = 2}, + [390] = {.lex_state = 56, .external_lex_state = 2}, + [391] = {.lex_state = 56, .external_lex_state = 2}, + [392] = {.lex_state = 56, .external_lex_state = 2}, + [393] = {.lex_state = 56, .external_lex_state = 2}, + [394] = {.lex_state = 56, .external_lex_state = 2}, + [395] = {.lex_state = 56, .external_lex_state = 2}, + [396] = {.lex_state = 56, .external_lex_state = 2}, + [397] = {.lex_state = 56, .external_lex_state = 2}, + [398] = {.lex_state = 56, .external_lex_state = 2}, + [399] = {.lex_state = 56, .external_lex_state = 2}, + [400] = {.lex_state = 56, .external_lex_state = 2}, + [401] = {.lex_state = 56, .external_lex_state = 2}, + [402] = {.lex_state = 56, .external_lex_state = 2}, + [403] = {.lex_state = 56, .external_lex_state = 2}, + [404] = {.lex_state = 56, .external_lex_state = 2}, + [405] = {.lex_state = 56, .external_lex_state = 2}, + [406] = {.lex_state = 56, .external_lex_state = 2}, + [407] = {.lex_state = 56, .external_lex_state = 2}, + [408] = {.lex_state = 56, .external_lex_state = 2}, + [409] = {.lex_state = 56, .external_lex_state = 2}, + [410] = {.lex_state = 56, .external_lex_state = 2}, + [411] = {.lex_state = 56, .external_lex_state = 2}, + [412] = {.lex_state = 56, .external_lex_state = 2}, + [413] = {.lex_state = 56, .external_lex_state = 2}, + [414] = {.lex_state = 56, .external_lex_state = 2}, + [415] = {.lex_state = 56, .external_lex_state = 2}, + [416] = {.lex_state = 56, .external_lex_state = 2}, + [417] = {.lex_state = 56, .external_lex_state = 2}, + [418] = {.lex_state = 56, .external_lex_state = 2}, + [419] = {.lex_state = 56, .external_lex_state = 2}, + [420] = {.lex_state = 56, .external_lex_state = 2}, + [421] = {.lex_state = 56, .external_lex_state = 2}, + [422] = {.lex_state = 56, .external_lex_state = 2}, + [423] = {.lex_state = 56, .external_lex_state = 2}, + [424] = {.lex_state = 56, .external_lex_state = 2}, + [425] = {.lex_state = 56, .external_lex_state = 2}, + [426] = {.lex_state = 56, .external_lex_state = 2}, + [427] = {.lex_state = 56, .external_lex_state = 2}, + [428] = {.lex_state = 56, .external_lex_state = 2}, + [429] = {.lex_state = 56, .external_lex_state = 2}, + [430] = {.lex_state = 56, .external_lex_state = 2}, + [431] = {.lex_state = 56, .external_lex_state = 2}, + [432] = {.lex_state = 56, .external_lex_state = 2}, + [433] = {.lex_state = 56, .external_lex_state = 2}, + [434] = {.lex_state = 56, .external_lex_state = 2}, + [435] = {.lex_state = 56, .external_lex_state = 2}, + [436] = {.lex_state = 56, .external_lex_state = 2}, + [437] = {.lex_state = 56, .external_lex_state = 2}, + [438] = {.lex_state = 56, .external_lex_state = 2}, + [439] = {.lex_state = 56, .external_lex_state = 2}, + [440] = {.lex_state = 56, .external_lex_state = 2}, + [441] = {.lex_state = 56, .external_lex_state = 2}, + [442] = {.lex_state = 56, .external_lex_state = 2}, + [443] = {.lex_state = 56, .external_lex_state = 2}, + [444] = {.lex_state = 56, .external_lex_state = 2}, + [445] = {.lex_state = 56, .external_lex_state = 2}, + [446] = {.lex_state = 56, .external_lex_state = 2}, + [447] = {.lex_state = 56, .external_lex_state = 2}, + [448] = {.lex_state = 56, .external_lex_state = 2}, + [449] = {.lex_state = 56, .external_lex_state = 2}, + [450] = {.lex_state = 56, .external_lex_state = 2}, + [451] = {.lex_state = 56, .external_lex_state = 2}, + [452] = {.lex_state = 56, .external_lex_state = 2}, + [453] = {.lex_state = 56, .external_lex_state = 2}, + [454] = {.lex_state = 56, .external_lex_state = 2}, + [455] = {.lex_state = 56, .external_lex_state = 2}, + [456] = {.lex_state = 56, .external_lex_state = 2}, + [457] = {.lex_state = 56, .external_lex_state = 2}, + [458] = {.lex_state = 56, .external_lex_state = 2}, + [459] = {.lex_state = 56, .external_lex_state = 2}, + [460] = {.lex_state = 56, .external_lex_state = 2}, + [461] = {.lex_state = 56, .external_lex_state = 2}, + [462] = {.lex_state = 56, .external_lex_state = 2}, + [463] = {.lex_state = 56, .external_lex_state = 2}, + [464] = {.lex_state = 56, .external_lex_state = 2}, + [465] = {.lex_state = 56, .external_lex_state = 2}, + [466] = {.lex_state = 56, .external_lex_state = 2}, + [467] = {.lex_state = 56, .external_lex_state = 2}, + [468] = {.lex_state = 56, .external_lex_state = 2}, + [469] = {.lex_state = 56, .external_lex_state = 2}, + [470] = {.lex_state = 56, .external_lex_state = 2}, + [471] = {.lex_state = 56, .external_lex_state = 2}, + [472] = {.lex_state = 56, .external_lex_state = 2}, + [473] = {.lex_state = 56, .external_lex_state = 2}, + [474] = {.lex_state = 56, .external_lex_state = 2}, + [475] = {.lex_state = 56, .external_lex_state = 2}, + [476] = {.lex_state = 56, .external_lex_state = 2}, + [477] = {.lex_state = 56, .external_lex_state = 2}, + [478] = {.lex_state = 56, .external_lex_state = 2}, + [479] = {.lex_state = 56, .external_lex_state = 2}, + [480] = {.lex_state = 56, .external_lex_state = 2}, + [481] = {.lex_state = 56, .external_lex_state = 2}, [482] = {.lex_state = 12, .external_lex_state = 2}, [483] = {.lex_state = 12, .external_lex_state = 2}, [484] = {.lex_state = 12, .external_lex_state = 2}, @@ -13685,8 +13624,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 57, .external_lex_state = 3}, - [1688] = {.lex_state = 57, .external_lex_state = 3}, + [1687] = {.lex_state = 56, .external_lex_state = 3}, + [1688] = {.lex_state = 56, .external_lex_state = 3}, [1689] = {.lex_state = 7, .external_lex_state = 3}, [1690] = {.lex_state = 7, .external_lex_state = 3}, [1691] = {.lex_state = 7, .external_lex_state = 3}, @@ -13724,7 +13663,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 7, .external_lex_state = 3}, [1724] = {.lex_state = 17, .external_lex_state = 3}, [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 57, .external_lex_state = 3}, + [1726] = {.lex_state = 56, .external_lex_state = 3}, [1727] = {.lex_state = 0, .external_lex_state = 3}, [1728] = {.lex_state = 4, .external_lex_state = 3}, [1729] = {.lex_state = 17, .external_lex_state = 3}, @@ -13747,7 +13686,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1746] = {.lex_state = 7, .external_lex_state = 3}, [1747] = {.lex_state = 17, .external_lex_state = 3}, [1748] = {.lex_state = 17, .external_lex_state = 3}, - [1749] = {.lex_state = 57, .external_lex_state = 3}, + [1749] = {.lex_state = 56, .external_lex_state = 3}, [1750] = {.lex_state = 17, .external_lex_state = 3}, [1751] = {.lex_state = 7, .external_lex_state = 3}, [1752] = {.lex_state = 7, .external_lex_state = 3}, @@ -13758,26 +13697,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1757] = {.lex_state = 7, .external_lex_state = 3}, [1758] = {.lex_state = 7, .external_lex_state = 3}, [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 57, .external_lex_state = 3}, + [1760] = {.lex_state = 56, .external_lex_state = 3}, [1761] = {.lex_state = 17, .external_lex_state = 3}, [1762] = {.lex_state = 18, .external_lex_state = 3}, [1763] = {.lex_state = 4, .external_lex_state = 3}, [1764] = {.lex_state = 4, .external_lex_state = 4}, [1765] = {.lex_state = 4, .external_lex_state = 3}, [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 57, .external_lex_state = 3}, - [1768] = {.lex_state = 57, .external_lex_state = 3}, - [1769] = {.lex_state = 57, .external_lex_state = 3}, + [1767] = {.lex_state = 56, .external_lex_state = 3}, + [1768] = {.lex_state = 56, .external_lex_state = 3}, + [1769] = {.lex_state = 56, .external_lex_state = 3}, [1770] = {.lex_state = 17, .external_lex_state = 3}, [1771] = {.lex_state = 18, .external_lex_state = 3}, [1772] = {.lex_state = 18, .external_lex_state = 3}, [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 57, .external_lex_state = 3}, + [1774] = {.lex_state = 56, .external_lex_state = 3}, [1775] = {.lex_state = 17, .external_lex_state = 3}, [1776] = {.lex_state = 7, .external_lex_state = 3}, [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 57, .external_lex_state = 3}, + [1778] = {.lex_state = 56, .external_lex_state = 3}, + [1779] = {.lex_state = 56, .external_lex_state = 3}, [1780] = {.lex_state = 0, .external_lex_state = 3}, [1781] = {.lex_state = 4, .external_lex_state = 3}, [1782] = {.lex_state = 0, .external_lex_state = 3}, @@ -13787,40 +13726,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1786] = {.lex_state = 0, .external_lex_state = 3}, [1787] = {.lex_state = 0, .external_lex_state = 3}, [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 57, .external_lex_state = 3}, + [1789] = {.lex_state = 56, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, [1791] = {.lex_state = 4, .external_lex_state = 4}, - [1792] = {.lex_state = 57, .external_lex_state = 3}, + [1792] = {.lex_state = 56, .external_lex_state = 3}, [1793] = {.lex_state = 0, .external_lex_state = 3}, [1794] = {.lex_state = 4, .external_lex_state = 4}, [1795] = {.lex_state = 17, .external_lex_state = 3}, [1796] = {.lex_state = 0, .external_lex_state = 3}, [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 57, .external_lex_state = 3}, - [1799] = {.lex_state = 57, .external_lex_state = 3}, + [1798] = {.lex_state = 56, .external_lex_state = 3}, + [1799] = {.lex_state = 56, .external_lex_state = 3}, [1800] = {.lex_state = 7, .external_lex_state = 3}, [1801] = {.lex_state = 18, .external_lex_state = 3}, - [1802] = {.lex_state = 57, .external_lex_state = 3}, + [1802] = {.lex_state = 56, .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 = 57, .external_lex_state = 3}, - [1807] = {.lex_state = 57, .external_lex_state = 3}, + [1806] = {.lex_state = 56, .external_lex_state = 3}, + [1807] = {.lex_state = 56, .external_lex_state = 3}, [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 57, .external_lex_state = 3}, + [1809] = {.lex_state = 56, .external_lex_state = 3}, [1810] = {.lex_state = 7, .external_lex_state = 3}, - [1811] = {.lex_state = 57, .external_lex_state = 3}, + [1811] = {.lex_state = 56, .external_lex_state = 3}, [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 57, .external_lex_state = 3}, + [1813] = {.lex_state = 56, .external_lex_state = 3}, [1814] = {.lex_state = 7, .external_lex_state = 3}, [1815] = {.lex_state = 7, .external_lex_state = 3}, [1816] = {.lex_state = 7, .external_lex_state = 3}, [1817] = {.lex_state = 4, .external_lex_state = 3}, [1818] = {.lex_state = 17, .external_lex_state = 3}, - [1819] = {.lex_state = 57, .external_lex_state = 3}, - [1820] = {.lex_state = 57, .external_lex_state = 3}, + [1819] = {.lex_state = 56, .external_lex_state = 3}, + [1820] = {.lex_state = 56, .external_lex_state = 3}, [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 57, .external_lex_state = 3}, + [1822] = {.lex_state = 56, .external_lex_state = 3}, [1823] = {.lex_state = 7, .external_lex_state = 3}, [1824] = {.lex_state = 10, .external_lex_state = 3}, [1825] = {.lex_state = 7, .external_lex_state = 3}, @@ -13828,9 +13767,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1827] = {.lex_state = 7, .external_lex_state = 3}, [1828] = {.lex_state = 17, .external_lex_state = 3}, [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 57, .external_lex_state = 3}, - [1831] = {.lex_state = 57, .external_lex_state = 3}, - [1832] = {.lex_state = 57, .external_lex_state = 3}, + [1830] = {.lex_state = 56, .external_lex_state = 3}, + [1831] = {.lex_state = 56, .external_lex_state = 3}, + [1832] = {.lex_state = 56, .external_lex_state = 3}, [1833] = {.lex_state = 17, .external_lex_state = 3}, [1834] = {.lex_state = 7, .external_lex_state = 3}, [1835] = {.lex_state = 0, .external_lex_state = 3}, @@ -13838,14 +13777,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1837] = {.lex_state = 7, .external_lex_state = 3}, [1838] = {.lex_state = 17, .external_lex_state = 3}, [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 57, .external_lex_state = 3}, - [1841] = {.lex_state = 57, .external_lex_state = 3}, - [1842] = {.lex_state = 57, .external_lex_state = 3}, + [1840] = {.lex_state = 56, .external_lex_state = 3}, + [1841] = {.lex_state = 56, .external_lex_state = 3}, + [1842] = {.lex_state = 56, .external_lex_state = 3}, [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 57, .external_lex_state = 3}, + [1844] = {.lex_state = 56, .external_lex_state = 3}, [1845] = {.lex_state = 4, .external_lex_state = 4}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 57, .external_lex_state = 3}, + [1847] = {.lex_state = 56, .external_lex_state = 3}, [1848] = {.lex_state = 17, .external_lex_state = 3}, [1849] = {.lex_state = 0, .external_lex_state = 3}, [1850] = {.lex_state = 0, .external_lex_state = 3}, @@ -13853,29 +13792,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1852] = {.lex_state = 4, .external_lex_state = 4}, [1853] = {.lex_state = 0, .external_lex_state = 3}, [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 57, .external_lex_state = 3}, + [1855] = {.lex_state = 56, .external_lex_state = 3}, [1856] = {.lex_state = 0, .external_lex_state = 3}, [1857] = {.lex_state = 7, .external_lex_state = 3}, [1858] = {.lex_state = 7, .external_lex_state = 3}, [1859] = {.lex_state = 7, .external_lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 57, .external_lex_state = 3}, + [1862] = {.lex_state = 56, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 57, .external_lex_state = 3}, + [1865] = {.lex_state = 56, .external_lex_state = 3}, [1866] = {.lex_state = 7, .external_lex_state = 3}, [1867] = {.lex_state = 7, .external_lex_state = 3}, - [1868] = {.lex_state = 57, .external_lex_state = 3}, + [1868] = {.lex_state = 56, .external_lex_state = 3}, [1869] = {.lex_state = 0, .external_lex_state = 3}, [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 57, .external_lex_state = 3}, + [1871] = {.lex_state = 56, .external_lex_state = 3}, [1872] = {.lex_state = 7, .external_lex_state = 3}, - [1873] = {.lex_state = 57, .external_lex_state = 3}, + [1873] = {.lex_state = 56, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, [1875] = {.lex_state = 0, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 57, .external_lex_state = 3}, + [1877] = {.lex_state = 56, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, [1879] = {.lex_state = 0, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, @@ -13883,36 +13822,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1882] = {.lex_state = 0, .external_lex_state = 3}, [1883] = {.lex_state = 0, .external_lex_state = 3}, [1884] = {.lex_state = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 57, .external_lex_state = 3}, + [1885] = {.lex_state = 56, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 57, .external_lex_state = 3}, - [1888] = {.lex_state = 57, .external_lex_state = 3}, + [1887] = {.lex_state = 56, .external_lex_state = 3}, + [1888] = {.lex_state = 56, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, + [1890] = {.lex_state = 56, .external_lex_state = 3}, [1891] = {.lex_state = 7, .external_lex_state = 3}, [1892] = {.lex_state = 0, .external_lex_state = 3}, [1893] = {.lex_state = 0, .external_lex_state = 3}, [1894] = {.lex_state = 0, .external_lex_state = 3}, [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, + [1896] = {.lex_state = 56, .external_lex_state = 3}, [1897] = {.lex_state = 0, .external_lex_state = 3}, [1898] = {.lex_state = 7, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, + [1900] = {.lex_state = 56, .external_lex_state = 3}, + [1901] = {.lex_state = 56, .external_lex_state = 3}, [1902] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 57, .external_lex_state = 3}, - [1909] = {.lex_state = 57, .external_lex_state = 3}, + [1908] = {.lex_state = 56, .external_lex_state = 3}, + [1909] = {.lex_state = 56, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, [1911] = {.lex_state = 7, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 57, .external_lex_state = 3}, + [1914] = {.lex_state = 56, .external_lex_state = 3}, [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 10, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, @@ -13920,13 +13859,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1919] = {.lex_state = 0, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, [1921] = {.lex_state = 10, .external_lex_state = 3}, - [1922] = {.lex_state = 57, .external_lex_state = 3}, - [1923] = {.lex_state = 57, .external_lex_state = 3}, + [1922] = {.lex_state = 56, .external_lex_state = 3}, + [1923] = {.lex_state = 56, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 57, .external_lex_state = 3}, + [1925] = {.lex_state = 56, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 57, .external_lex_state = 3}, + [1928] = {.lex_state = 56, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, @@ -13939,113 +13878,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1938] = {.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 = 57, .external_lex_state = 3}, + [1941] = {.lex_state = 56, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, [1943] = {.lex_state = 7, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, - [1945] = {.lex_state = 57, .external_lex_state = 3}, + [1945] = {.lex_state = 56, .external_lex_state = 3}, [1946] = {.lex_state = 17, .external_lex_state = 3}, [1947] = {.lex_state = 7, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 57, .external_lex_state = 3}, + [1950] = {.lex_state = 56, .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 = 57, .external_lex_state = 3}, + [1954] = {.lex_state = 56, .external_lex_state = 3}, [1955] = {.lex_state = 7, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, + [1958] = {.lex_state = 56, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 3, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, [1962] = {.lex_state = 3, .external_lex_state = 3}, - [1963] = {.lex_state = 57, .external_lex_state = 3}, + [1963] = {.lex_state = 56, .external_lex_state = 3}, [1964] = {.lex_state = 10, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 57, .external_lex_state = 3}, + [1966] = {.lex_state = 56, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, [1969] = {.lex_state = 3, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 57, .external_lex_state = 3}, + [1971] = {.lex_state = 56, .external_lex_state = 3}, [1972] = {.lex_state = 3, .external_lex_state = 3}, [1973] = {.lex_state = 3, .external_lex_state = 3}, [1974] = {.lex_state = 3, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, [1977] = {.lex_state = 7, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, + [1978] = {.lex_state = 56, .external_lex_state = 3}, [1979] = {.lex_state = 3, .external_lex_state = 3}, [1980] = {.lex_state = 4, .external_lex_state = 3}, [1981] = {.lex_state = 4, .external_lex_state = 3}, - [1982] = {.lex_state = 57, .external_lex_state = 3}, + [1982] = {.lex_state = 56, .external_lex_state = 3}, [1983] = {.lex_state = 0, .external_lex_state = 3}, [1984] = {.lex_state = 3, .external_lex_state = 3}, [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 57, .external_lex_state = 3}, + [1986] = {.lex_state = 56, .external_lex_state = 3}, [1987] = {.lex_state = 3, .external_lex_state = 3}, [1988] = {.lex_state = 7, .external_lex_state = 3}, [1989] = {.lex_state = 3, .external_lex_state = 3}, - [1990] = {.lex_state = 57, .external_lex_state = 3}, + [1990] = {.lex_state = 56, .external_lex_state = 3}, [1991] = {.lex_state = 3, .external_lex_state = 3}, - [1992] = {.lex_state = 57, .external_lex_state = 3}, + [1992] = {.lex_state = 56, .external_lex_state = 3}, [1993] = {.lex_state = 3, .external_lex_state = 3}, - [1994] = {.lex_state = 57, .external_lex_state = 3}, + [1994] = {.lex_state = 56, .external_lex_state = 3}, [1995] = {.lex_state = 7, .external_lex_state = 3}, - [1996] = {.lex_state = 57, .external_lex_state = 3}, + [1996] = {.lex_state = 56, .external_lex_state = 3}, [1997] = {.lex_state = 3, .external_lex_state = 3}, [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 57, .external_lex_state = 3}, - [2000] = {.lex_state = 57, .external_lex_state = 3}, - [2001] = {.lex_state = 57, .external_lex_state = 3}, + [1999] = {.lex_state = 56, .external_lex_state = 3}, + [2000] = {.lex_state = 56, .external_lex_state = 3}, + [2001] = {.lex_state = 56, .external_lex_state = 3}, [2002] = {.lex_state = 7, .external_lex_state = 3}, - [2003] = {.lex_state = 57, .external_lex_state = 3}, + [2003] = {.lex_state = 56, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 57, .external_lex_state = 3}, + [2005] = {.lex_state = 56, .external_lex_state = 3}, [2006] = {.lex_state = 3, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, [2008] = {.lex_state = 0, .external_lex_state = 3}, [2009] = {.lex_state = 0, .external_lex_state = 3}, [2010] = {.lex_state = 3, .external_lex_state = 3}, - [2011] = {.lex_state = 57, .external_lex_state = 3}, - [2012] = {.lex_state = 57, .external_lex_state = 3}, + [2011] = {.lex_state = 56, .external_lex_state = 3}, + [2012] = {.lex_state = 56, .external_lex_state = 3}, [2013] = {.lex_state = 3, .external_lex_state = 3}, [2014] = {.lex_state = 7, .external_lex_state = 3}, [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 57, .external_lex_state = 3}, + [2016] = {.lex_state = 56, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 57, .external_lex_state = 3}, + [2018] = {.lex_state = 56, .external_lex_state = 3}, [2019] = {.lex_state = 10, .external_lex_state = 3}, [2020] = {.lex_state = 3, .external_lex_state = 3}, [2021] = {.lex_state = 0, .external_lex_state = 3}, [2022] = {.lex_state = 3, .external_lex_state = 3}, [2023] = {.lex_state = 0, .external_lex_state = 3}, [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 57, .external_lex_state = 3}, + [2025] = {.lex_state = 56, .external_lex_state = 3}, [2026] = {.lex_state = 0, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 57, .external_lex_state = 3}, + [2030] = {.lex_state = 56, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, [2032] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 57, .external_lex_state = 3}, + [2037] = {.lex_state = 56, .external_lex_state = 3}, [2038] = {.lex_state = 0, .external_lex_state = 3}, [2039] = {.lex_state = 3, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 57, .external_lex_state = 3}, + [2041] = {.lex_state = 56, .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 = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 57, .external_lex_state = 3}, - [2047] = {.lex_state = 57, .external_lex_state = 3}, + [2046] = {.lex_state = 56, .external_lex_state = 3}, + [2047] = {.lex_state = 56, .external_lex_state = 3}, [2048] = {.lex_state = 3, .external_lex_state = 3}, [2049] = {.lex_state = 7, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, @@ -14063,21 +14002,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 57, .external_lex_state = 3}, + [2065] = {.lex_state = 56, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 57, .external_lex_state = 3}, + [2071] = {.lex_state = 56, .external_lex_state = 3}, [2072] = {.lex_state = 0, .external_lex_state = 3}, - [2073] = {.lex_state = 57, .external_lex_state = 3}, - [2074] = {.lex_state = 57, .external_lex_state = 3}, - [2075] = {.lex_state = 57, .external_lex_state = 3}, + [2073] = {.lex_state = 56, .external_lex_state = 3}, + [2074] = {.lex_state = 56, .external_lex_state = 3}, + [2075] = {.lex_state = 56, .external_lex_state = 3}, [2076] = {.lex_state = 0, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 57, .external_lex_state = 3}, + [2079] = {.lex_state = 56, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, @@ -14085,16 +14024,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 57, .external_lex_state = 3}, + [2087] = {.lex_state = 56, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, [2090] = {.lex_state = 7, .external_lex_state = 3}, [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 57, .external_lex_state = 3}, + [2092] = {.lex_state = 56, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 57, .external_lex_state = 3}, + [2096] = {.lex_state = 56, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, @@ -14103,23 +14042,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 57, .external_lex_state = 3}, - [2106] = {.lex_state = 57, .external_lex_state = 3}, + [2105] = {.lex_state = 56, .external_lex_state = 3}, + [2106] = {.lex_state = 56, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, [2108] = {.lex_state = 7, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 57, .external_lex_state = 3}, + [2111] = {.lex_state = 56, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 57, .external_lex_state = 3}, + [2113] = {.lex_state = 56, .external_lex_state = 3}, [2114] = {.lex_state = 7, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 10, .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 = 57, .external_lex_state = 3}, - [2121] = {.lex_state = 57, .external_lex_state = 3}, + [2120] = {.lex_state = 56, .external_lex_state = 3}, + [2121] = {.lex_state = 56, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, @@ -14139,47 +14078,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 7, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 57, .external_lex_state = 3}, + [2141] = {.lex_state = 56, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2143] = {.lex_state = 56, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, [2145] = {.lex_state = 7, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 57, .external_lex_state = 3}, - [2149] = {.lex_state = 57, .external_lex_state = 3}, + [2148] = {.lex_state = 56, .external_lex_state = 3}, + [2149] = {.lex_state = 56, .external_lex_state = 3}, [2150] = {.lex_state = 7, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 57, .external_lex_state = 3}, + [2152] = {.lex_state = 56, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 7, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 57, .external_lex_state = 3}, + [2156] = {.lex_state = 56, .external_lex_state = 3}, [2157] = {.lex_state = 0, .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}, - [2162] = {.lex_state = 57, .external_lex_state = 3}, + [2162] = {.lex_state = 56, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 57, .external_lex_state = 3}, - [2165] = {.lex_state = 57, .external_lex_state = 3}, + [2164] = {.lex_state = 56, .external_lex_state = 3}, + [2165] = {.lex_state = 56, .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 = 7, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 57, .external_lex_state = 3}, + [2172] = {.lex_state = 56, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 57, .external_lex_state = 3}, + [2175] = {.lex_state = 56, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, [2180] = {.lex_state = 17, .external_lex_state = 3}, - [2181] = {.lex_state = 57, .external_lex_state = 3}, + [2181] = {.lex_state = 56, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 17, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, @@ -14193,7 +14132,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2192] = {.lex_state = 7, .external_lex_state = 3}, [2193] = {.lex_state = 7, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 57, .external_lex_state = 3}, + [2195] = {.lex_state = 56, .external_lex_state = 3}, [2196] = {.lex_state = 7, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, @@ -14202,20 +14141,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, [2203] = {.lex_state = 17, .external_lex_state = 3}, - [2204] = {.lex_state = 57, .external_lex_state = 3}, - [2205] = {.lex_state = 57, .external_lex_state = 3}, + [2204] = {.lex_state = 56, .external_lex_state = 3}, + [2205] = {.lex_state = 56, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 57, .external_lex_state = 3}, + [2208] = {.lex_state = 56, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 57, .external_lex_state = 3}, + [2212] = {.lex_state = 56, .external_lex_state = 3}, [2213] = {.lex_state = 17, .external_lex_state = 3}, - [2214] = {.lex_state = 57, .external_lex_state = 3}, + [2214] = {.lex_state = 56, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2217] = {.lex_state = 56, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 7, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, @@ -14231,7 +14170,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 57, .external_lex_state = 3}, + [2233] = {.lex_state = 56, .external_lex_state = 3}, [2234] = {.lex_state = 7, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, @@ -14240,25 +14179,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2239] = {.lex_state = 0, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 57, .external_lex_state = 3}, + [2242] = {.lex_state = 56, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 57, .external_lex_state = 3}, + [2245] = {.lex_state = 56, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 5}, [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 7, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, - [2251] = {.lex_state = 57, .external_lex_state = 3}, + [2251] = {.lex_state = 56, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 57, .external_lex_state = 3}, + [2254] = {.lex_state = 56, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 7, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 7, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 57, .external_lex_state = 3}, + [2260] = {.lex_state = 56, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 10, .external_lex_state = 3}, @@ -14271,20 +14210,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2270] = {.lex_state = 0, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 57, .external_lex_state = 3}, + [2273] = {.lex_state = 56, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 57, .external_lex_state = 3}, + [2276] = {.lex_state = 56, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 57, .external_lex_state = 3}, + [2280] = {.lex_state = 56, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, [2282] = {.lex_state = 0, .external_lex_state = 3}, [2283] = {.lex_state = 7, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 57, .external_lex_state = 3}, - [2286] = {.lex_state = 57, .external_lex_state = 3}, + [2285] = {.lex_state = 56, .external_lex_state = 3}, + [2286] = {.lex_state = 56, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, @@ -14293,21 +14232,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 57, .external_lex_state = 3}, + [2295] = {.lex_state = 56, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 57, .external_lex_state = 3}, + [2297] = {.lex_state = 56, .external_lex_state = 3}, [2298] = {.lex_state = 7, .external_lex_state = 3}, [2299] = {.lex_state = 7, .external_lex_state = 3}, [2300] = {.lex_state = 0, .external_lex_state = 3}, [2301] = {.lex_state = 0, .external_lex_state = 3}, [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 57, .external_lex_state = 3}, + [2303] = {.lex_state = 56, .external_lex_state = 3}, [2304] = {.lex_state = 7, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 57, .external_lex_state = 3}, + [2307] = {.lex_state = 56, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 57, .external_lex_state = 3}, + [2309] = {.lex_state = 56, .external_lex_state = 3}, [2310] = {.lex_state = 7, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, @@ -14323,10 +14262,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2322] = {.lex_state = 7, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 57, .external_lex_state = 3}, + [2325] = {.lex_state = 56, .external_lex_state = 3}, [2326] = {.lex_state = 7, .external_lex_state = 3}, [2327] = {.lex_state = 7, .external_lex_state = 3}, - [2328] = {.lex_state = 57, .external_lex_state = 3}, + [2328] = {.lex_state = 56, .external_lex_state = 3}, [2329] = {.lex_state = 7, .external_lex_state = 3}, [2330] = {.lex_state = 7, .external_lex_state = 3}, [2331] = {.lex_state = 7, .external_lex_state = 3}, @@ -14390,7 +14329,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2389] = {.lex_state = 7, .external_lex_state = 3}, [2390] = {.lex_state = 7, .external_lex_state = 3}, [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 57, .external_lex_state = 3}, + [2392] = {.lex_state = 56, .external_lex_state = 3}, [2393] = {.lex_state = 7, .external_lex_state = 3}, [2394] = {.lex_state = 0, .external_lex_state = 3}, [2395] = {.lex_state = 0, .external_lex_state = 3}, @@ -14406,7 +14345,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2405] = {.lex_state = 10, .external_lex_state = 3}, [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 57, .external_lex_state = 3}, + [2408] = {.lex_state = 56, .external_lex_state = 3}, [2409] = {.lex_state = 0, .external_lex_state = 3}, [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 7, .external_lex_state = 3}, @@ -14549,6 +14488,8 @@ enum { ts_external_token_raw_string_literal = 1, ts_external_token_float_literal = 2, ts_external_token_block_comment = 3, + ts_external_token_line_comment = 4, + ts_external_token_doc_comment = 5, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -14556,6 +14497,8 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_literal] = sym_raw_string_literal, [ts_external_token_float_literal] = sym_float_literal, [ts_external_token_block_comment] = sym_block_comment, + [ts_external_token_line_comment] = sym_line_comment, + [ts_external_token_doc_comment] = sym_doc_comment, }; static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { @@ -14564,22 +14507,32 @@ static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + [ts_external_token_doc_comment] = true, }, [2] = { [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + [ts_external_token_doc_comment] = true, }, [3] = { [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + [ts_external_token_doc_comment] = true, }, [4] = { [ts_external_token__string_content] = true, [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + [ts_external_token_doc_comment] = true, }, [5] = { [ts_external_token_float_literal] = true, [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + [ts_external_token_doc_comment] = true, }, }; @@ -14713,7 +14666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_sequence] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_crate] = ACTIONS(1), @@ -14722,6 +14674,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1), [sym_float_literal] = ACTIONS(1), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [1] = { [sym_source_file] = STATE(2460), @@ -14864,7 +14818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -14872,6 +14825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [2] = { [sym__statement] = STATE(2), @@ -15013,7 +14968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(233), [anon_sym_true] = ACTIONS(239), [anon_sym_false] = ACTIONS(239), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(242), [sym_super] = ACTIONS(245), [sym_crate] = ACTIONS(248), @@ -15021,6 +14975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(233), [sym_float_literal] = ACTIONS(233), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [3] = { [sym__statement] = STATE(12), @@ -15162,7 +15118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -15170,6 +15125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [4] = { [sym__statement] = STATE(6), @@ -15311,7 +15268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -15319,6 +15275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [5] = { [sym__statement] = STATE(10), @@ -15460,7 +15418,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -15468,6 +15425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [6] = { [sym__statement] = STATE(2), @@ -15609,7 +15568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -15617,6 +15575,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [7] = { [sym__statement] = STATE(2), @@ -15758,7 +15718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -15766,6 +15725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [8] = { [sym__statement] = STATE(8), @@ -15907,7 +15868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(233), [anon_sym_true] = ACTIONS(239), [anon_sym_false] = ACTIONS(239), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(242), [sym_super] = ACTIONS(245), [sym_crate] = ACTIONS(248), @@ -15915,6 +15875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(233), [sym_float_literal] = ACTIONS(233), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [9] = { [sym__statement] = STATE(15), @@ -16056,7 +16018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16064,6 +16025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [10] = { [sym__statement] = STATE(2), @@ -16205,7 +16168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16213,6 +16175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [11] = { [sym__statement] = STATE(7), @@ -16354,7 +16318,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16362,6 +16325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [12] = { [sym__statement] = STATE(2), @@ -16503,7 +16468,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16511,6 +16475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [13] = { [sym__statement] = STATE(8), @@ -16652,7 +16618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16660,6 +16625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [14] = { [sym__statement] = STATE(2), @@ -16801,7 +16768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16809,6 +16775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [15] = { [sym__statement] = STATE(2), @@ -16950,7 +16918,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -16958,6 +16925,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [16] = { [sym__statement] = STATE(14), @@ -17099,7 +17068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(101), @@ -17107,6 +17075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [17] = { [sym_bracketed_type] = STATE(2453), @@ -17241,7 +17211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17249,6 +17218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [18] = { [sym_bracketed_type] = STATE(2453), @@ -17382,7 +17353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17390,6 +17360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [19] = { [sym_bracketed_type] = STATE(2453), @@ -17523,7 +17495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17531,6 +17502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [20] = { [sym_bracketed_type] = STATE(2453), @@ -17664,7 +17637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17672,6 +17644,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [21] = { [sym_bracketed_type] = STATE(2453), @@ -17805,7 +17779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17813,6 +17786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [22] = { [sym_bracketed_type] = STATE(2453), @@ -17946,7 +17921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17954,6 +17928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [23] = { [sym_bracketed_type] = STATE(2453), @@ -18087,7 +18063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18095,6 +18070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [24] = { [sym_bracketed_type] = STATE(2453), @@ -18228,7 +18205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18236,6 +18212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [25] = { [sym_bracketed_type] = STATE(2453), @@ -18364,7 +18342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18372,6 +18349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [26] = { [sym_bracketed_type] = STATE(2453), @@ -18499,7 +18478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18507,6 +18485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [27] = { [sym_bracketed_type] = STATE(2453), @@ -18634,7 +18614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18642,6 +18621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [28] = { [sym_bracketed_type] = STATE(2453), @@ -18769,7 +18750,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18777,6 +18757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [29] = { [sym_bracketed_type] = STATE(2453), @@ -18904,7 +18886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -18912,6 +18893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [30] = { [sym_bracketed_type] = STATE(2453), @@ -19039,7 +19022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19047,6 +19029,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [31] = { [sym_bracketed_type] = STATE(2453), @@ -19174,7 +19158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19182,6 +19165,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [32] = { [sym_bracketed_type] = STATE(2453), @@ -19309,7 +19294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19317,6 +19301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [33] = { [sym_attribute_item] = STATE(594), @@ -19420,7 +19406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19428,6 +19413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [34] = { [sym_attribute_item] = STATE(40), @@ -19531,7 +19518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19539,6 +19525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [35] = { [sym_attribute_item] = STATE(33), @@ -19642,7 +19630,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19650,6 +19637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [36] = { [sym_attribute_item] = STATE(43), @@ -19752,7 +19741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19760,6 +19748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [37] = { [sym_attribute_item] = STATE(43), @@ -19862,7 +19852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19870,6 +19859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [38] = { [sym_attribute_item] = STATE(42), @@ -19972,7 +19963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19980,6 +19970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [39] = { [sym_attribute_item] = STATE(43), @@ -20082,7 +20074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20090,6 +20081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [40] = { [sym_attribute_item] = STATE(594), @@ -20191,7 +20184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20199,6 +20191,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [41] = { [sym_attribute_item] = STATE(43), @@ -20300,7 +20294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20308,6 +20301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [42] = { [sym_attribute_item] = STATE(594), @@ -20409,7 +20404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20417,6 +20411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [43] = { [sym_attribute_item] = STATE(594), @@ -20518,7 +20514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20526,6 +20521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [44] = { [sym_bracketed_type] = STATE(2453), @@ -20626,7 +20623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(470), [anon_sym_true] = ACTIONS(476), [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(479), [sym_super] = ACTIONS(482), [sym_crate] = ACTIONS(482), @@ -20634,6 +20630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(470), [sym_float_literal] = ACTIONS(470), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [45] = { [sym_else_clause] = STATE(123), @@ -20734,7 +20732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(488), [anon_sym_true] = ACTIONS(490), [anon_sym_false] = ACTIONS(490), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(490), [sym_super] = ACTIONS(490), [sym_crate] = ACTIONS(490), @@ -20742,6 +20739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(488), [sym_float_literal] = ACTIONS(488), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [46] = { [sym_bracketed_type] = STATE(2453), @@ -20842,7 +20841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20850,6 +20848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [47] = { [sym_else_clause] = STATE(140), @@ -20950,7 +20950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -20958,6 +20957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(496), [sym_float_literal] = ACTIONS(496), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [48] = { [sym_bracketed_type] = STATE(2453), @@ -21058,7 +21059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21066,6 +21066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [49] = { [sym_bracketed_type] = STATE(2453), @@ -21166,7 +21168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21174,6 +21175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [50] = { [sym_bracketed_type] = STATE(2453), @@ -21274,7 +21277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21282,6 +21284,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [51] = { [sym_bracketed_type] = STATE(2453), @@ -21381,7 +21385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21389,6 +21392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [52] = { [sym_bracketed_type] = STATE(2453), @@ -21488,7 +21493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21496,6 +21500,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [53] = { [sym_bracketed_type] = STATE(2453), @@ -21595,7 +21601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21603,6 +21608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [54] = { [sym_bracketed_type] = STATE(2453), @@ -21702,7 +21709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21710,6 +21716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [55] = { [sym_bracketed_type] = STATE(2453), @@ -21809,7 +21817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21817,6 +21824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [56] = { [sym_bracketed_type] = STATE(2453), @@ -21916,7 +21925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21924,6 +21932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [57] = { [sym_bracketed_type] = STATE(2453), @@ -22023,7 +22033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22031,6 +22040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [58] = { [sym_bracketed_type] = STATE(2453), @@ -22130,7 +22141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22138,6 +22148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [59] = { [sym_bracketed_type] = STATE(2453), @@ -22237,7 +22249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22245,6 +22256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [60] = { [ts_builtin_sym_end] = ACTIONS(530), @@ -22344,7 +22357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(530), [anon_sym_true] = ACTIONS(532), [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(532), [sym_super] = ACTIONS(532), [sym_crate] = ACTIONS(532), @@ -22352,6 +22364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(530), [sym_float_literal] = ACTIONS(530), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [61] = { [sym_bracketed_type] = STATE(2453), @@ -22451,7 +22465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22459,6 +22472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [62] = { [sym_bracketed_type] = STATE(2453), @@ -22558,7 +22573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22566,6 +22580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [63] = { [sym_bracketed_type] = STATE(2453), @@ -22665,7 +22681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22673,6 +22688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [64] = { [ts_builtin_sym_end] = ACTIONS(540), @@ -22772,7 +22789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(540), [anon_sym_true] = ACTIONS(542), [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(542), [sym_super] = ACTIONS(542), [sym_crate] = ACTIONS(542), @@ -22780,6 +22796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(540), [sym_float_literal] = ACTIONS(540), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [65] = { [sym_bracketed_type] = STATE(2453), @@ -22879,7 +22897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22887,6 +22904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [66] = { [sym_bracketed_type] = STATE(2453), @@ -22986,7 +23005,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22994,6 +23012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [67] = { [sym_bracketed_type] = STATE(2453), @@ -23093,7 +23113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23101,6 +23120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [68] = { [sym_bracketed_type] = STATE(2453), @@ -23200,7 +23221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23208,6 +23228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [69] = { [sym_bracketed_type] = STATE(2453), @@ -23307,7 +23329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23315,6 +23336,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [70] = { [sym_bracketed_type] = STATE(2453), @@ -23414,7 +23437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23422,6 +23444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [71] = { [ts_builtin_sym_end] = ACTIONS(554), @@ -23521,7 +23545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(554), [anon_sym_true] = ACTIONS(556), [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(556), [sym_super] = ACTIONS(556), [sym_crate] = ACTIONS(556), @@ -23529,6 +23552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(554), [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [72] = { [sym_bracketed_type] = STATE(2453), @@ -23627,7 +23652,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23635,6 +23659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [73] = { [ts_builtin_sym_end] = ACTIONS(558), @@ -23733,7 +23759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(558), [anon_sym_true] = ACTIONS(560), [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(560), [sym_super] = ACTIONS(560), [sym_crate] = ACTIONS(560), @@ -23741,6 +23766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(558), [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [74] = { [sym_bracketed_type] = STATE(2453), @@ -23839,7 +23866,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23847,6 +23873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [75] = { [sym_bracketed_type] = STATE(2453), @@ -23945,7 +23973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23953,6 +23980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [76] = { [sym_bracketed_type] = STATE(2453), @@ -24051,7 +24080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24059,6 +24087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [77] = { [ts_builtin_sym_end] = ACTIONS(562), @@ -24157,7 +24187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(562), [anon_sym_true] = ACTIONS(564), [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(564), [sym_super] = ACTIONS(564), [sym_crate] = ACTIONS(564), @@ -24165,6 +24194,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(562), [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [78] = { [sym_bracketed_type] = STATE(2453), @@ -24263,7 +24294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24271,6 +24301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [79] = { [ts_builtin_sym_end] = ACTIONS(570), @@ -24369,7 +24401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(570), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(572), [sym_super] = ACTIONS(572), [sym_crate] = ACTIONS(572), @@ -24377,6 +24408,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(570), [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [80] = { [sym_bracketed_type] = STATE(2453), @@ -24475,7 +24508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24483,6 +24515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [81] = { [ts_builtin_sym_end] = ACTIONS(574), @@ -24581,7 +24615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(574), [anon_sym_true] = ACTIONS(576), [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(576), [sym_super] = ACTIONS(576), [sym_crate] = ACTIONS(576), @@ -24589,6 +24622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(574), [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [82] = { [sym_bracketed_type] = STATE(2453), @@ -24687,7 +24722,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24695,6 +24729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [83] = { [sym_bracketed_type] = STATE(2453), @@ -24793,7 +24829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24801,6 +24836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [84] = { [sym_bracketed_type] = STATE(2453), @@ -24899,7 +24936,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24907,6 +24943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [85] = { [ts_builtin_sym_end] = ACTIONS(578), @@ -25005,7 +25043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(578), [anon_sym_true] = ACTIONS(580), [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(580), [sym_super] = ACTIONS(580), [sym_crate] = ACTIONS(580), @@ -25013,6 +25050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(578), [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [86] = { [sym_bracketed_type] = STATE(2453), @@ -25111,7 +25150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25119,6 +25157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [87] = { [sym_bracketed_type] = STATE(2453), @@ -25217,7 +25257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25225,6 +25264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [88] = { [sym_bracketed_type] = STATE(2453), @@ -25323,7 +25364,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25331,6 +25371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [89] = { [sym_bracketed_type] = STATE(2453), @@ -25429,7 +25471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25437,6 +25478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [90] = { [sym_bracketed_type] = STATE(2453), @@ -25535,7 +25578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25543,6 +25585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [91] = { [sym_bracketed_type] = STATE(2453), @@ -25641,7 +25685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25649,6 +25692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [92] = { [ts_builtin_sym_end] = ACTIONS(582), @@ -25747,7 +25792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(582), [anon_sym_true] = ACTIONS(584), [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(584), [sym_super] = ACTIONS(584), [sym_crate] = ACTIONS(584), @@ -25755,6 +25799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(582), [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [93] = { [sym_bracketed_type] = STATE(2453), @@ -25853,7 +25899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25861,6 +25906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [94] = { [sym_bracketed_type] = STATE(2453), @@ -25959,7 +26006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -25967,6 +26013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [95] = { [ts_builtin_sym_end] = ACTIONS(586), @@ -26065,7 +26113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(586), [anon_sym_true] = ACTIONS(588), [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(588), [sym_super] = ACTIONS(588), [sym_crate] = ACTIONS(588), @@ -26073,6 +26120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(586), [sym_float_literal] = ACTIONS(586), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [96] = { [ts_builtin_sym_end] = ACTIONS(590), @@ -26171,7 +26220,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(590), [anon_sym_true] = ACTIONS(592), [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(592), [sym_super] = ACTIONS(592), [sym_crate] = ACTIONS(592), @@ -26179,6 +26227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(590), [sym_float_literal] = ACTIONS(590), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [97] = { [sym_bracketed_type] = STATE(2453), @@ -26277,7 +26327,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26285,6 +26334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [98] = { [sym_bracketed_type] = STATE(2453), @@ -26383,7 +26434,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26391,6 +26441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [99] = { [ts_builtin_sym_end] = ACTIONS(594), @@ -26489,7 +26541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(594), [anon_sym_true] = ACTIONS(596), [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(596), [sym_super] = ACTIONS(596), [sym_crate] = ACTIONS(596), @@ -26497,6 +26548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(594), [sym_float_literal] = ACTIONS(594), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [100] = { [sym_bracketed_type] = STATE(2453), @@ -26595,7 +26648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26603,6 +26655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [101] = { [sym_bracketed_type] = STATE(2453), @@ -26701,7 +26755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26709,6 +26762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [102] = { [ts_builtin_sym_end] = ACTIONS(598), @@ -26807,7 +26862,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(598), [anon_sym_true] = ACTIONS(600), [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_crate] = ACTIONS(600), @@ -26815,6 +26869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(598), [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [103] = { [sym_bracketed_type] = STATE(2453), @@ -26913,7 +26969,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26921,6 +26976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [104] = { [sym_bracketed_type] = STATE(2453), @@ -27019,7 +27076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27027,6 +27083,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [105] = { [sym_bracketed_type] = STATE(2453), @@ -27125,7 +27183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27133,6 +27190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [106] = { [sym_bracketed_type] = STATE(2453), @@ -27231,7 +27290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27239,6 +27297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [107] = { [sym_bracketed_type] = STATE(2453), @@ -27337,7 +27397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27345,6 +27404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [108] = { [ts_builtin_sym_end] = ACTIONS(602), @@ -27443,7 +27504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(602), [anon_sym_true] = ACTIONS(604), [anon_sym_false] = ACTIONS(604), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(604), [sym_super] = ACTIONS(604), [sym_crate] = ACTIONS(604), @@ -27451,6 +27511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(602), [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [109] = { [sym_bracketed_type] = STATE(2453), @@ -27549,7 +27611,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27557,6 +27618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [110] = { [sym_bracketed_type] = STATE(2453), @@ -27655,7 +27718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27663,6 +27725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [111] = { [sym_bracketed_type] = STATE(2453), @@ -27761,7 +27825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27769,6 +27832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [112] = { [sym_bracketed_type] = STATE(2453), @@ -27867,7 +27932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27875,6 +27939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [113] = { [sym_bracketed_type] = STATE(2453), @@ -27973,7 +28039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27981,6 +28046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [114] = { [sym_bracketed_type] = STATE(2453), @@ -28079,7 +28146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28087,6 +28153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [115] = { [sym_bracketed_type] = STATE(2453), @@ -28185,7 +28253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28193,6 +28260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [116] = { [sym_bracketed_type] = STATE(2453), @@ -28291,7 +28360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28299,6 +28367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [117] = { [sym_bracketed_type] = STATE(2453), @@ -28397,7 +28467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28405,6 +28474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [118] = { [sym_bracketed_type] = STATE(2453), @@ -28503,7 +28574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28511,6 +28581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [119] = { [sym_bracketed_type] = STATE(2453), @@ -28609,7 +28681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28617,6 +28688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [120] = { [sym_bracketed_type] = STATE(2453), @@ -28715,7 +28788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28723,6 +28795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [121] = { [sym_bracketed_type] = STATE(2453), @@ -28821,7 +28895,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28829,6 +28902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [122] = { [sym_bracketed_type] = STATE(2453), @@ -28927,7 +29002,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -28935,6 +29009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [123] = { [ts_builtin_sym_end] = ACTIONS(606), @@ -29033,7 +29109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(606), [anon_sym_true] = ACTIONS(608), [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(608), [sym_super] = ACTIONS(608), [sym_crate] = ACTIONS(608), @@ -29041,6 +29116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(606), [sym_float_literal] = ACTIONS(606), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [124] = { [sym_bracketed_type] = STATE(2453), @@ -29139,7 +29216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29147,6 +29223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [125] = { [sym_bracketed_type] = STATE(2453), @@ -29245,7 +29323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29253,6 +29330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [126] = { [ts_builtin_sym_end] = ACTIONS(628), @@ -29351,7 +29430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(628), [anon_sym_true] = ACTIONS(630), [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(630), [sym_super] = ACTIONS(630), [sym_crate] = ACTIONS(630), @@ -29359,6 +29437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(628), [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [127] = { [sym_bracketed_type] = STATE(2453), @@ -29457,7 +29537,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29465,6 +29544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [128] = { [sym_bracketed_type] = STATE(2453), @@ -29563,7 +29644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29571,6 +29651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [129] = { [sym_bracketed_type] = STATE(2453), @@ -29669,7 +29751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29677,6 +29758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [130] = { [sym_bracketed_type] = STATE(2453), @@ -29775,7 +29858,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29783,6 +29865,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [131] = { [ts_builtin_sym_end] = ACTIONS(632), @@ -29881,7 +29965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(632), [anon_sym_true] = ACTIONS(634), [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(634), [sym_super] = ACTIONS(634), [sym_crate] = ACTIONS(634), @@ -29889,6 +29972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(632), [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [132] = { [sym_bracketed_type] = STATE(2453), @@ -29987,7 +30072,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29995,6 +30079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [133] = { [sym_bracketed_type] = STATE(2453), @@ -30093,7 +30179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30101,6 +30186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [134] = { [sym_bracketed_type] = STATE(2453), @@ -30199,7 +30286,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30207,6 +30293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [135] = { [ts_builtin_sym_end] = ACTIONS(636), @@ -30305,7 +30393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(636), [anon_sym_true] = ACTIONS(638), [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(638), [sym_super] = ACTIONS(638), [sym_crate] = ACTIONS(638), @@ -30313,6 +30400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(636), [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [136] = { [sym_bracketed_type] = STATE(2453), @@ -30411,7 +30500,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30419,6 +30507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [137] = { [sym_bracketed_type] = STATE(2453), @@ -30517,7 +30607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30525,6 +30614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [138] = { [sym_bracketed_type] = STATE(2453), @@ -30623,7 +30714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30631,6 +30721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [139] = { [sym_bracketed_type] = STATE(2453), @@ -30729,7 +30821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30737,6 +30828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [140] = { [ts_builtin_sym_end] = ACTIONS(640), @@ -30835,7 +30928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(640), [anon_sym_true] = ACTIONS(642), [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(642), [sym_super] = ACTIONS(642), [sym_crate] = ACTIONS(642), @@ -30843,6 +30935,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(640), [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [141] = { [sym_bracketed_type] = STATE(2453), @@ -30941,7 +31035,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30949,6 +31042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [142] = { [ts_builtin_sym_end] = ACTIONS(644), @@ -31047,7 +31142,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(644), [anon_sym_true] = ACTIONS(646), [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(646), [sym_super] = ACTIONS(646), [sym_crate] = ACTIONS(646), @@ -31055,6 +31149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(644), [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [143] = { [sym_bracketed_type] = STATE(2453), @@ -31153,7 +31249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31161,6 +31256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [144] = { [sym_bracketed_type] = STATE(2453), @@ -31259,7 +31356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31267,6 +31363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [145] = { [sym_bracketed_type] = STATE(2453), @@ -31365,7 +31463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31373,6 +31470,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [146] = { [sym_bracketed_type] = STATE(2453), @@ -31471,7 +31570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31479,6 +31577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [147] = { [sym_bracketed_type] = STATE(2453), @@ -31577,7 +31677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31585,6 +31684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [148] = { [ts_builtin_sym_end] = ACTIONS(648), @@ -31683,7 +31784,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(648), [anon_sym_true] = ACTIONS(650), [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(650), [sym_super] = ACTIONS(650), [sym_crate] = ACTIONS(650), @@ -31691,6 +31791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(648), [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [149] = { [ts_builtin_sym_end] = ACTIONS(652), @@ -31789,7 +31891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(652), [anon_sym_true] = ACTIONS(654), [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(654), [sym_super] = ACTIONS(654), [sym_crate] = ACTIONS(654), @@ -31797,6 +31898,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(652), [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [150] = { [sym_bracketed_type] = STATE(2453), @@ -31895,7 +31998,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31903,6 +32005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [151] = { [sym_bracketed_type] = STATE(2453), @@ -32001,7 +32105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32009,6 +32112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [152] = { [sym_bracketed_type] = STATE(2453), @@ -32107,7 +32212,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32115,6 +32219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [153] = { [sym_bracketed_type] = STATE(2453), @@ -32213,7 +32319,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32221,6 +32326,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [154] = { [sym_bracketed_type] = STATE(2453), @@ -32319,7 +32426,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32327,6 +32433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [155] = { [sym_bracketed_type] = STATE(2453), @@ -32425,7 +32533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32433,6 +32540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [156] = { [sym_bracketed_type] = STATE(2453), @@ -32531,7 +32640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32539,6 +32647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [157] = { [sym_bracketed_type] = STATE(2453), @@ -32637,7 +32747,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32645,6 +32754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [158] = { [sym_bracketed_type] = STATE(2453), @@ -32743,7 +32854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32751,6 +32861,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [159] = { [sym_bracketed_type] = STATE(2453), @@ -32849,7 +32961,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32857,6 +32968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [160] = { [ts_builtin_sym_end] = ACTIONS(656), @@ -32955,7 +33068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(656), [anon_sym_true] = ACTIONS(658), [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(658), [sym_super] = ACTIONS(658), [sym_crate] = ACTIONS(658), @@ -32963,6 +33075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(656), [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [161] = { [sym_bracketed_type] = STATE(2453), @@ -33061,7 +33175,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33069,6 +33182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [162] = { [sym_bracketed_type] = STATE(2453), @@ -33167,7 +33282,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33175,6 +33289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [163] = { [ts_builtin_sym_end] = ACTIONS(660), @@ -33273,7 +33389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(660), [anon_sym_true] = ACTIONS(662), [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(662), [sym_super] = ACTIONS(662), [sym_crate] = ACTIONS(662), @@ -33281,6 +33396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(660), [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [164] = { [sym_bracketed_type] = STATE(2453), @@ -33379,7 +33496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33387,6 +33503,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [165] = { [sym_bracketed_type] = STATE(2453), @@ -33485,7 +33603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33493,6 +33610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [166] = { [ts_builtin_sym_end] = ACTIONS(664), @@ -33591,7 +33710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(664), [anon_sym_true] = ACTIONS(666), [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(666), [sym_super] = ACTIONS(666), [sym_crate] = ACTIONS(666), @@ -33599,6 +33717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(664), [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [167] = { [sym_bracketed_type] = STATE(2453), @@ -33697,7 +33817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33705,6 +33824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [168] = { [sym_bracketed_type] = STATE(2453), @@ -33803,7 +33924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33811,6 +33931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [169] = { [sym_bracketed_type] = STATE(2453), @@ -33909,7 +34031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33917,6 +34038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [170] = { [sym_bracketed_type] = STATE(2453), @@ -34015,7 +34138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34023,6 +34145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [171] = { [sym_bracketed_type] = STATE(2453), @@ -34121,7 +34245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34129,6 +34252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [172] = { [sym_bracketed_type] = STATE(2453), @@ -34227,7 +34352,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34235,6 +34359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [173] = { [ts_builtin_sym_end] = ACTIONS(668), @@ -34333,7 +34459,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(668), [anon_sym_true] = ACTIONS(670), [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(670), [sym_super] = ACTIONS(670), [sym_crate] = ACTIONS(670), @@ -34341,6 +34466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(668), [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [174] = { [sym_bracketed_type] = STATE(2453), @@ -34439,7 +34566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34447,6 +34573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [175] = { [sym_bracketed_type] = STATE(2453), @@ -34545,7 +34673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34553,6 +34680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [176] = { [sym_bracketed_type] = STATE(2453), @@ -34651,7 +34780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34659,6 +34787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [177] = { [sym_bracketed_type] = STATE(2453), @@ -34757,7 +34887,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34765,6 +34894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [178] = { [ts_builtin_sym_end] = ACTIONS(672), @@ -34863,7 +34994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(672), [anon_sym_true] = ACTIONS(674), [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(674), [sym_super] = ACTIONS(674), [sym_crate] = ACTIONS(674), @@ -34871,6 +35001,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(672), [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [179] = { [sym_bracketed_type] = STATE(2453), @@ -34969,7 +35101,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34977,6 +35108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [180] = { [sym_bracketed_type] = STATE(2453), @@ -35075,7 +35208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -35083,6 +35215,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [181] = { [sym_bracketed_type] = STATE(2453), @@ -35181,7 +35315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -35189,6 +35322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [182] = { [ts_builtin_sym_end] = ACTIONS(676), @@ -35287,7 +35422,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(676), [anon_sym_true] = ACTIONS(678), [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(678), [sym_super] = ACTIONS(678), [sym_crate] = ACTIONS(678), @@ -35295,6 +35429,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(676), [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [183] = { [sym_identifier] = ACTIONS(564), @@ -35392,7 +35528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(562), [anon_sym_true] = ACTIONS(564), [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(564), [sym_super] = ACTIONS(564), [sym_crate] = ACTIONS(564), @@ -35400,6 +35535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(562), [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [184] = { [sym_attribute_item] = STATE(196), @@ -35495,7 +35632,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(740), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -35503,6 +35639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [185] = { [sym_attribute_item] = STATE(198), @@ -35598,7 +35736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -35606,6 +35743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [186] = { [sym_attribute_item] = STATE(196), @@ -35701,7 +35840,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -35709,6 +35847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [187] = { [sym_attribute_item] = STATE(196), @@ -35804,7 +35944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(740), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -35812,6 +35951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [188] = { [sym_attribute_item] = STATE(196), @@ -35907,7 +36048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(740), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -35915,6 +36055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [189] = { [sym_attribute_item] = STATE(197), @@ -36009,7 +36151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36017,6 +36158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [190] = { [sym_attribute_item] = STATE(197), @@ -36111,7 +36254,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36119,6 +36261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [191] = { [sym_attribute_item] = STATE(197), @@ -36213,7 +36357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36221,6 +36364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [192] = { [sym_attribute_item] = STATE(197), @@ -36315,7 +36460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36323,6 +36467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [193] = { [sym_attribute_item] = STATE(197), @@ -36417,7 +36563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36425,6 +36570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [194] = { [sym_attribute_item] = STATE(197), @@ -36519,7 +36666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36527,6 +36673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [195] = { [sym_attribute_item] = STATE(197), @@ -36620,7 +36768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36628,6 +36775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [196] = { [sym_function_modifiers] = STATE(2404), @@ -36719,7 +36868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36727,6 +36875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [197] = { [sym_function_modifiers] = STATE(2404), @@ -36818,7 +36968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36826,6 +36975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [198] = { [sym_function_modifiers] = STATE(2404), @@ -36917,7 +37068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -36925,6 +37075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [199] = { [sym_function_modifiers] = STATE(2404), @@ -37014,7 +37166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(830), [sym_super] = ACTIONS(830), [sym_crate] = ACTIONS(830), @@ -37022,6 +37173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [200] = { [sym_function_modifiers] = STATE(2404), @@ -37111,7 +37264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -37119,6 +37271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [201] = { [sym_function_modifiers] = STATE(2404), @@ -37208,7 +37362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -37216,6 +37369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [202] = { [sym_function_modifiers] = STATE(2404), @@ -37305,7 +37460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -37313,6 +37467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [203] = { [sym_identifier] = ACTIONS(848), @@ -37401,7 +37557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(850), [anon_sym_true] = ACTIONS(848), [anon_sym_false] = ACTIONS(848), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(848), [sym_super] = ACTIONS(848), [sym_crate] = ACTIONS(848), @@ -37409,6 +37564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(850), [sym_float_literal] = ACTIONS(850), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [204] = { [sym_function_modifiers] = STATE(2404), @@ -37496,7 +37653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(830), [sym_super] = ACTIONS(830), [sym_crate] = ACTIONS(830), @@ -37504,6 +37660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [205] = { [sym_function_modifiers] = STATE(2404), @@ -37591,7 +37749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(830), [sym_super] = ACTIONS(830), [sym_crate] = ACTIONS(830), @@ -37599,6 +37756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [206] = { [sym_function_modifiers] = STATE(2404), @@ -37686,7 +37845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -37694,6 +37852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [207] = { [sym_function_modifiers] = STATE(2404), @@ -37781,7 +37941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(864), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -37789,6 +37948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [208] = { [sym_function_modifiers] = STATE(2404), @@ -37876,7 +38037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -37884,6 +38044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [209] = { [sym_function_modifiers] = STATE(2404), @@ -37971,7 +38133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(866), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -37979,6 +38140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [210] = { [sym_function_modifiers] = STATE(2404), @@ -38066,7 +38229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(868), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -38074,6 +38236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [211] = { [sym_function_modifiers] = STATE(2404), @@ -38161,7 +38325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), @@ -38169,6 +38332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [212] = { [sym_function_modifiers] = STATE(2404), @@ -38256,7 +38421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -38264,6 +38428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [213] = { [sym_function_modifiers] = STATE(2404), @@ -38351,7 +38517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(876), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), @@ -38359,6 +38524,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [214] = { [sym_bracketed_type] = STATE(2420), @@ -38437,7 +38604,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(880), [anon_sym_true] = ACTIONS(878), [anon_sym_false] = ACTIONS(878), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(878), [sym_super] = ACTIONS(878), [sym_crate] = ACTIONS(878), @@ -38445,6 +38611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(880), [sym_float_literal] = ACTIONS(880), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [215] = { [sym_else_clause] = STATE(232), @@ -38519,7 +38687,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -38527,6 +38694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(496), [sym_float_literal] = ACTIONS(496), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [216] = { [sym_else_clause] = STATE(242), @@ -38601,7 +38770,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(488), [anon_sym_true] = ACTIONS(490), [anon_sym_false] = ACTIONS(490), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(490), [sym_super] = ACTIONS(490), [sym_crate] = ACTIONS(490), @@ -38609,6 +38777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(488), [sym_float_literal] = ACTIONS(488), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [217] = { [sym_identifier] = ACTIONS(556), @@ -38682,7 +38852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(554), [anon_sym_true] = ACTIONS(556), [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(556), [sym_super] = ACTIONS(556), [sym_crate] = ACTIONS(556), @@ -38690,6 +38859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(554), [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [218] = { [sym_identifier] = ACTIONS(532), @@ -38763,7 +38934,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(530), [anon_sym_true] = ACTIONS(532), [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(532), [sym_super] = ACTIONS(532), [sym_crate] = ACTIONS(532), @@ -38771,6 +38941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(530), [sym_float_literal] = ACTIONS(530), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [219] = { [sym_identifier] = ACTIONS(542), @@ -38844,7 +39016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(540), [anon_sym_true] = ACTIONS(542), [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(542), [sym_super] = ACTIONS(542), [sym_crate] = ACTIONS(542), @@ -38852,6 +39023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(540), [sym_float_literal] = ACTIONS(540), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [220] = { [sym_identifier] = ACTIONS(600), @@ -38924,7 +39097,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(598), [anon_sym_true] = ACTIONS(600), [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_crate] = ACTIONS(600), @@ -38932,6 +39104,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(598), [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [221] = { [sym_identifier] = ACTIONS(584), @@ -39004,7 +39178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(582), [anon_sym_true] = ACTIONS(584), [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(584), [sym_super] = ACTIONS(584), [sym_crate] = ACTIONS(584), @@ -39012,6 +39185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(582), [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [222] = { [sym_identifier] = ACTIONS(576), @@ -39084,7 +39259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(574), [anon_sym_true] = ACTIONS(576), [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(576), [sym_super] = ACTIONS(576), [sym_crate] = ACTIONS(576), @@ -39092,6 +39266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(574), [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [223] = { [sym_function_modifiers] = STATE(2404), @@ -39164,7 +39340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -39172,6 +39347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [224] = { [sym_identifier] = ACTIONS(910), @@ -39244,7 +39421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(912), [anon_sym_true] = ACTIONS(910), [anon_sym_false] = ACTIONS(910), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(910), [sym_super] = ACTIONS(910), [sym_crate] = ACTIONS(910), @@ -39252,6 +39428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(912), [sym_float_literal] = ACTIONS(912), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [225] = { [sym_identifier] = ACTIONS(674), @@ -39324,7 +39502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(672), [anon_sym_true] = ACTIONS(674), [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(674), [sym_super] = ACTIONS(674), [sym_crate] = ACTIONS(674), @@ -39332,6 +39509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(672), [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [226] = { [sym_identifier] = ACTIONS(560), @@ -39404,7 +39583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(558), [anon_sym_true] = ACTIONS(560), [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(560), [sym_super] = ACTIONS(560), [sym_crate] = ACTIONS(560), @@ -39412,6 +39590,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(558), [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [227] = { [sym_identifier] = ACTIONS(634), @@ -39484,7 +39664,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(632), [anon_sym_true] = ACTIONS(634), [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(634), [sym_super] = ACTIONS(634), [sym_crate] = ACTIONS(634), @@ -39492,6 +39671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(632), [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [228] = { [sym_function_modifiers] = STATE(2404), @@ -39564,7 +39745,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -39572,6 +39752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [229] = { [sym_function_modifiers] = STATE(2404), @@ -39644,7 +39826,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -39652,6 +39833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [230] = { [sym_identifier] = ACTIONS(580), @@ -39724,7 +39907,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(578), [anon_sym_true] = ACTIONS(580), [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(580), [sym_super] = ACTIONS(580), [sym_crate] = ACTIONS(580), @@ -39732,6 +39914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(578), [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [231] = { [sym_identifier] = ACTIONS(638), @@ -39804,7 +39988,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(636), [anon_sym_true] = ACTIONS(638), [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(638), [sym_super] = ACTIONS(638), [sym_crate] = ACTIONS(638), @@ -39812,6 +39995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(636), [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [232] = { [sym_identifier] = ACTIONS(642), @@ -39884,7 +40069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(640), [anon_sym_true] = ACTIONS(642), [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(642), [sym_super] = ACTIONS(642), [sym_crate] = ACTIONS(642), @@ -39892,6 +40076,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(640), [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [233] = { [sym_function_modifiers] = STATE(2404), @@ -39964,7 +40150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -39972,6 +40157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [234] = { [sym_identifier] = ACTIONS(670), @@ -40044,7 +40231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(668), [anon_sym_true] = ACTIONS(670), [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(670), [sym_super] = ACTIONS(670), [sym_crate] = ACTIONS(670), @@ -40052,6 +40238,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(668), [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [235] = { [sym_identifier] = ACTIONS(678), @@ -40124,7 +40312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(676), [anon_sym_true] = ACTIONS(678), [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(678), [sym_super] = ACTIONS(678), [sym_crate] = ACTIONS(678), @@ -40132,6 +40319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(676), [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [236] = { [sym_identifier] = ACTIONS(630), @@ -40204,7 +40393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(628), [anon_sym_true] = ACTIONS(630), [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(630), [sym_super] = ACTIONS(630), [sym_crate] = ACTIONS(630), @@ -40212,6 +40400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(628), [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [237] = { [sym_identifier] = ACTIONS(920), @@ -40284,7 +40474,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(922), [anon_sym_true] = ACTIONS(920), [anon_sym_false] = ACTIONS(920), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(920), [sym_super] = ACTIONS(920), [sym_crate] = ACTIONS(920), @@ -40292,6 +40481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(922), [sym_float_literal] = ACTIONS(922), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [238] = { [sym_identifier] = ACTIONS(662), @@ -40364,7 +40555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(660), [anon_sym_true] = ACTIONS(662), [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(662), [sym_super] = ACTIONS(662), [sym_crate] = ACTIONS(662), @@ -40372,6 +40562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(660), [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [239] = { [sym_identifier] = ACTIONS(654), @@ -40444,7 +40636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(652), [anon_sym_true] = ACTIONS(654), [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(654), [sym_super] = ACTIONS(654), [sym_crate] = ACTIONS(654), @@ -40452,6 +40643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(652), [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [240] = { [sym_identifier] = ACTIONS(596), @@ -40524,7 +40717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(594), [anon_sym_true] = ACTIONS(596), [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(596), [sym_super] = ACTIONS(596), [sym_crate] = ACTIONS(596), @@ -40532,6 +40724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(594), [sym_float_literal] = ACTIONS(594), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [241] = { [sym_identifier] = ACTIONS(658), @@ -40604,7 +40798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(656), [anon_sym_true] = ACTIONS(658), [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(658), [sym_super] = ACTIONS(658), [sym_crate] = ACTIONS(658), @@ -40612,6 +40805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(656), [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [242] = { [sym_identifier] = ACTIONS(608), @@ -40684,7 +40879,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(606), [anon_sym_true] = ACTIONS(608), [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(608), [sym_super] = ACTIONS(608), [sym_crate] = ACTIONS(608), @@ -40692,6 +40886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(606), [sym_float_literal] = ACTIONS(606), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [243] = { [sym_identifier] = ACTIONS(646), @@ -40764,7 +40960,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(644), [anon_sym_true] = ACTIONS(646), [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(646), [sym_super] = ACTIONS(646), [sym_crate] = ACTIONS(646), @@ -40772,6 +40967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(644), [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [244] = { [sym_identifier] = ACTIONS(666), @@ -40844,7 +41041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(664), [anon_sym_true] = ACTIONS(666), [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(666), [sym_super] = ACTIONS(666), [sym_crate] = ACTIONS(666), @@ -40852,6 +41048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(664), [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [245] = { [sym_function_modifiers] = STATE(2404), @@ -40923,7 +41121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -40931,6 +41128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [246] = { [sym_function_modifiers] = STATE(2404), @@ -41002,7 +41201,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -41010,6 +41208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [247] = { [sym_function_modifiers] = STATE(2404), @@ -41081,7 +41281,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(904), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), @@ -41089,6 +41288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(904), [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [248] = { [sym_empty_statement] = STATE(249), @@ -41161,12 +41362,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(968), [sym_super] = ACTIONS(968), [sym_crate] = ACTIONS(970), [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [249] = { [sym_empty_statement] = STATE(253), @@ -41239,12 +41441,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(968), [sym_super] = ACTIONS(968), [sym_crate] = ACTIONS(970), [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [250] = { [sym_empty_statement] = STATE(253), @@ -41317,12 +41520,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(968), [sym_super] = ACTIONS(968), [sym_crate] = ACTIONS(970), [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [251] = { [sym__token_pattern] = STATE(251), @@ -41393,14 +41597,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(995), [anon_sym_true] = ACTIONS(1001), [anon_sym_false] = ACTIONS(1001), - [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(978), [sym_super] = ACTIONS(978), [sym_crate] = ACTIONS(978), - [sym_metavariable] = ACTIONS(1006), + [sym_metavariable] = ACTIONS(1004), [sym_raw_string_literal] = ACTIONS(995), [sym_float_literal] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [252] = { [sym_empty_statement] = STATE(250), @@ -41435,7 +41640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1007), [anon_sym_u8] = ACTIONS(932), [anon_sym_i8] = ACTIONS(932), [anon_sym_u16] = ACTIONS(932), @@ -41473,12 +41678,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(968), [sym_super] = ACTIONS(968), [sym_crate] = ACTIONS(970), [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [253] = { [sym_empty_statement] = STATE(253), @@ -41510,2055 +41716,2082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2242), [aux_sym_declaration_list_repeat1] = STATE(253), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_macro_rules_BANG] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1046), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1055), - [anon_sym_trait] = ACTIONS(1058), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_unsafe] = ACTIONS(1067), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(1082), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), - [sym_crate] = ACTIONS(1088), - [sym_metavariable] = ACTIONS(1091), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_macro_rules_BANG] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u128] = ACTIONS(1020), + [anon_sym_i128] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_str] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1044), + [anon_sym_pub] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1056), + [anon_sym_type] = ACTIONS(1059), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsafe] = ACTIONS(1065), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(1080), + [sym_self] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), + [sym_crate] = ACTIONS(1086), + [sym_metavariable] = ACTIONS(1089), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_macro_rules_BANG] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_u8] = ACTIONS(1096), - [anon_sym_i8] = ACTIONS(1096), - [anon_sym_u16] = ACTIONS(1096), - [anon_sym_i16] = ACTIONS(1096), - [anon_sym_u32] = ACTIONS(1096), - [anon_sym_i32] = ACTIONS(1096), - [anon_sym_u64] = ACTIONS(1096), - [anon_sym_i64] = ACTIONS(1096), - [anon_sym_u128] = ACTIONS(1096), - [anon_sym_i128] = ACTIONS(1096), - [anon_sym_isize] = ACTIONS(1096), - [anon_sym_usize] = ACTIONS(1096), - [anon_sym_f32] = ACTIONS(1096), - [anon_sym_f64] = ACTIONS(1096), - [anon_sym_bool] = ACTIONS(1096), - [anon_sym_str] = ACTIONS(1096), - [anon_sym_char] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_fn] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_impl] = ACTIONS(1096), - [anon_sym_let] = ACTIONS(1096), - [anon_sym_loop] = ACTIONS(1096), - [anon_sym_match] = ACTIONS(1096), - [anon_sym_mod] = ACTIONS(1096), - [anon_sym_pub] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_trait] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_DOT_DOT] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_move] = ACTIONS(1096), - [sym_integer_literal] = ACTIONS(1094), - [aux_sym_string_literal_token1] = ACTIONS(1094), - [sym_char_literal] = ACTIONS(1094), - [anon_sym_true] = ACTIONS(1096), - [anon_sym_false] = ACTIONS(1096), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1096), - [sym_super] = ACTIONS(1096), - [sym_crate] = ACTIONS(1096), - [sym_metavariable] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1094), - [sym_float_literal] = ACTIONS(1094), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_macro_rules_BANG] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_u8] = ACTIONS(1094), + [anon_sym_i8] = ACTIONS(1094), + [anon_sym_u16] = ACTIONS(1094), + [anon_sym_i16] = ACTIONS(1094), + [anon_sym_u32] = ACTIONS(1094), + [anon_sym_i32] = ACTIONS(1094), + [anon_sym_u64] = ACTIONS(1094), + [anon_sym_i64] = ACTIONS(1094), + [anon_sym_u128] = ACTIONS(1094), + [anon_sym_i128] = ACTIONS(1094), + [anon_sym_isize] = ACTIONS(1094), + [anon_sym_usize] = ACTIONS(1094), + [anon_sym_f32] = ACTIONS(1094), + [anon_sym_f64] = ACTIONS(1094), + [anon_sym_bool] = ACTIONS(1094), + [anon_sym_str] = ACTIONS(1094), + [anon_sym_char] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_impl] = ACTIONS(1094), + [anon_sym_let] = ACTIONS(1094), + [anon_sym_loop] = ACTIONS(1094), + [anon_sym_match] = ACTIONS(1094), + [anon_sym_mod] = ACTIONS(1094), + [anon_sym_pub] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_trait] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_unsafe] = ACTIONS(1094), + [anon_sym_use] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_move] = ACTIONS(1094), + [sym_integer_literal] = ACTIONS(1092), + [aux_sym_string_literal_token1] = ACTIONS(1092), + [sym_char_literal] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(1092), + [sym_float_literal] = ACTIONS(1092), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_macro_rules_BANG] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_u8] = ACTIONS(1100), - [anon_sym_i8] = ACTIONS(1100), - [anon_sym_u16] = ACTIONS(1100), - [anon_sym_i16] = ACTIONS(1100), - [anon_sym_u32] = ACTIONS(1100), - [anon_sym_i32] = ACTIONS(1100), - [anon_sym_u64] = ACTIONS(1100), - [anon_sym_i64] = ACTIONS(1100), - [anon_sym_u128] = ACTIONS(1100), - [anon_sym_i128] = ACTIONS(1100), - [anon_sym_isize] = ACTIONS(1100), - [anon_sym_usize] = ACTIONS(1100), - [anon_sym_f32] = ACTIONS(1100), - [anon_sym_f64] = ACTIONS(1100), - [anon_sym_bool] = ACTIONS(1100), - [anon_sym_str] = ACTIONS(1100), - [anon_sym_char] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_impl] = ACTIONS(1100), - [anon_sym_let] = ACTIONS(1100), - [anon_sym_loop] = ACTIONS(1100), - [anon_sym_match] = ACTIONS(1100), - [anon_sym_mod] = ACTIONS(1100), - [anon_sym_pub] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1100), - [anon_sym_type] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_unsafe] = ACTIONS(1100), - [anon_sym_use] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_COLON_COLON] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_DOT_DOT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_yield] = ACTIONS(1100), - [anon_sym_move] = ACTIONS(1100), - [sym_integer_literal] = ACTIONS(1098), - [aux_sym_string_literal_token1] = ACTIONS(1098), - [sym_char_literal] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1100), - [sym_super] = ACTIONS(1100), - [sym_crate] = ACTIONS(1100), - [sym_metavariable] = ACTIONS(1098), - [sym_raw_string_literal] = ACTIONS(1098), - [sym_float_literal] = ACTIONS(1098), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_macro_rules_BANG] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_async] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_fn] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1098), + [anon_sym_let] = ACTIONS(1098), + [anon_sym_loop] = ACTIONS(1098), + [anon_sym_match] = ACTIONS(1098), + [anon_sym_mod] = ACTIONS(1098), + [anon_sym_pub] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_trait] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1098), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_POUND] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_DOT_DOT] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_yield] = ACTIONS(1098), + [anon_sym_move] = ACTIONS(1098), + [sym_integer_literal] = ACTIONS(1096), + [aux_sym_string_literal_token1] = ACTIONS(1096), + [sym_char_literal] = ACTIONS(1096), + [anon_sym_true] = ACTIONS(1098), + [anon_sym_false] = ACTIONS(1098), + [sym_self] = ACTIONS(1098), + [sym_super] = ACTIONS(1098), + [sym_crate] = ACTIONS(1098), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(1096), + [sym_float_literal] = ACTIONS(1096), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_macro_rules_BANG] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_u8] = ACTIONS(1104), - [anon_sym_i8] = ACTIONS(1104), - [anon_sym_u16] = ACTIONS(1104), - [anon_sym_i16] = ACTIONS(1104), - [anon_sym_u32] = ACTIONS(1104), - [anon_sym_i32] = ACTIONS(1104), - [anon_sym_u64] = ACTIONS(1104), - [anon_sym_i64] = ACTIONS(1104), - [anon_sym_u128] = ACTIONS(1104), - [anon_sym_i128] = ACTIONS(1104), - [anon_sym_isize] = ACTIONS(1104), - [anon_sym_usize] = ACTIONS(1104), - [anon_sym_f32] = ACTIONS(1104), - [anon_sym_f64] = ACTIONS(1104), - [anon_sym_bool] = ACTIONS(1104), - [anon_sym_str] = ACTIONS(1104), - [anon_sym_char] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_async] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_fn] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_impl] = ACTIONS(1104), - [anon_sym_let] = ACTIONS(1104), - [anon_sym_loop] = ACTIONS(1104), - [anon_sym_match] = ACTIONS(1104), - [anon_sym_mod] = ACTIONS(1104), - [anon_sym_pub] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_unsafe] = ACTIONS(1104), - [anon_sym_use] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_COLON_COLON] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_DOT_DOT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_yield] = ACTIONS(1104), - [anon_sym_move] = ACTIONS(1104), - [sym_integer_literal] = ACTIONS(1102), - [aux_sym_string_literal_token1] = ACTIONS(1102), - [sym_char_literal] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1104), - [sym_crate] = ACTIONS(1104), - [sym_metavariable] = ACTIONS(1102), - [sym_raw_string_literal] = ACTIONS(1102), - [sym_float_literal] = ACTIONS(1102), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_macro_rules_BANG] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_u8] = ACTIONS(1102), + [anon_sym_i8] = ACTIONS(1102), + [anon_sym_u16] = ACTIONS(1102), + [anon_sym_i16] = ACTIONS(1102), + [anon_sym_u32] = ACTIONS(1102), + [anon_sym_i32] = ACTIONS(1102), + [anon_sym_u64] = ACTIONS(1102), + [anon_sym_i64] = ACTIONS(1102), + [anon_sym_u128] = ACTIONS(1102), + [anon_sym_i128] = ACTIONS(1102), + [anon_sym_isize] = ACTIONS(1102), + [anon_sym_usize] = ACTIONS(1102), + [anon_sym_f32] = ACTIONS(1102), + [anon_sym_f64] = ACTIONS(1102), + [anon_sym_bool] = ACTIONS(1102), + [anon_sym_str] = ACTIONS(1102), + [anon_sym_char] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_async] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_fn] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_loop] = ACTIONS(1102), + [anon_sym_match] = ACTIONS(1102), + [anon_sym_mod] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_trait] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_unsafe] = ACTIONS(1102), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_POUND] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_COLON_COLON] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_DOT_DOT] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1102), + [anon_sym_move] = ACTIONS(1102), + [sym_integer_literal] = ACTIONS(1100), + [aux_sym_string_literal_token1] = ACTIONS(1100), + [sym_char_literal] = ACTIONS(1100), + [anon_sym_true] = ACTIONS(1102), + [anon_sym_false] = ACTIONS(1102), + [sym_self] = ACTIONS(1102), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1100), + [sym_raw_string_literal] = ACTIONS(1100), + [sym_float_literal] = ACTIONS(1100), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_macro_rules_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_u8] = ACTIONS(1108), - [anon_sym_i8] = ACTIONS(1108), - [anon_sym_u16] = ACTIONS(1108), - [anon_sym_i16] = ACTIONS(1108), - [anon_sym_u32] = ACTIONS(1108), - [anon_sym_i32] = ACTIONS(1108), - [anon_sym_u64] = ACTIONS(1108), - [anon_sym_i64] = ACTIONS(1108), - [anon_sym_u128] = ACTIONS(1108), - [anon_sym_i128] = ACTIONS(1108), - [anon_sym_isize] = ACTIONS(1108), - [anon_sym_usize] = ACTIONS(1108), - [anon_sym_f32] = ACTIONS(1108), - [anon_sym_f64] = ACTIONS(1108), - [anon_sym_bool] = ACTIONS(1108), - [anon_sym_str] = ACTIONS(1108), - [anon_sym_char] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_async] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_fn] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_let] = ACTIONS(1108), - [anon_sym_loop] = ACTIONS(1108), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_mod] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_trait] = ACTIONS(1108), - [anon_sym_type] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_COLON_COLON] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(1108), - [anon_sym_move] = ACTIONS(1108), - [sym_integer_literal] = ACTIONS(1106), - [aux_sym_string_literal_token1] = ACTIONS(1106), - [sym_char_literal] = ACTIONS(1106), - [anon_sym_true] = ACTIONS(1108), - [anon_sym_false] = ACTIONS(1108), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1108), - [sym_super] = ACTIONS(1108), - [sym_crate] = ACTIONS(1108), - [sym_metavariable] = ACTIONS(1106), - [sym_raw_string_literal] = ACTIONS(1106), - [sym_float_literal] = ACTIONS(1106), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_macro_rules_BANG] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_u8] = ACTIONS(1106), + [anon_sym_i8] = ACTIONS(1106), + [anon_sym_u16] = ACTIONS(1106), + [anon_sym_i16] = ACTIONS(1106), + [anon_sym_u32] = ACTIONS(1106), + [anon_sym_i32] = ACTIONS(1106), + [anon_sym_u64] = ACTIONS(1106), + [anon_sym_i64] = ACTIONS(1106), + [anon_sym_u128] = ACTIONS(1106), + [anon_sym_i128] = ACTIONS(1106), + [anon_sym_isize] = ACTIONS(1106), + [anon_sym_usize] = ACTIONS(1106), + [anon_sym_f32] = ACTIONS(1106), + [anon_sym_f64] = ACTIONS(1106), + [anon_sym_bool] = ACTIONS(1106), + [anon_sym_str] = ACTIONS(1106), + [anon_sym_char] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_fn] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_impl] = ACTIONS(1106), + [anon_sym_let] = ACTIONS(1106), + [anon_sym_loop] = ACTIONS(1106), + [anon_sym_match] = ACTIONS(1106), + [anon_sym_mod] = ACTIONS(1106), + [anon_sym_pub] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_trait] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_unsafe] = ACTIONS(1106), + [anon_sym_use] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_POUND] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_COLON_COLON] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_DOT_DOT] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1106), + [anon_sym_move] = ACTIONS(1106), + [sym_integer_literal] = ACTIONS(1104), + [aux_sym_string_literal_token1] = ACTIONS(1104), + [sym_char_literal] = ACTIONS(1104), + [anon_sym_true] = ACTIONS(1106), + [anon_sym_false] = ACTIONS(1106), + [sym_self] = ACTIONS(1106), + [sym_super] = ACTIONS(1106), + [sym_crate] = ACTIONS(1106), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1104), + [sym_float_literal] = ACTIONS(1104), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_macro_rules_BANG] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_u8] = ACTIONS(1112), - [anon_sym_i8] = ACTIONS(1112), - [anon_sym_u16] = ACTIONS(1112), - [anon_sym_i16] = ACTIONS(1112), - [anon_sym_u32] = ACTIONS(1112), - [anon_sym_i32] = ACTIONS(1112), - [anon_sym_u64] = ACTIONS(1112), - [anon_sym_i64] = ACTIONS(1112), - [anon_sym_u128] = ACTIONS(1112), - [anon_sym_i128] = ACTIONS(1112), - [anon_sym_isize] = ACTIONS(1112), - [anon_sym_usize] = ACTIONS(1112), - [anon_sym_f32] = ACTIONS(1112), - [anon_sym_f64] = ACTIONS(1112), - [anon_sym_bool] = ACTIONS(1112), - [anon_sym_str] = ACTIONS(1112), - [anon_sym_char] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_fn] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_impl] = ACTIONS(1112), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_loop] = ACTIONS(1112), - [anon_sym_match] = ACTIONS(1112), - [anon_sym_mod] = ACTIONS(1112), - [anon_sym_pub] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_trait] = ACTIONS(1112), - [anon_sym_type] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_unsafe] = ACTIONS(1112), - [anon_sym_use] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PIPE] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_move] = ACTIONS(1112), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1110), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1112), - [sym_super] = ACTIONS(1112), - [sym_crate] = ACTIONS(1112), - [sym_metavariable] = ACTIONS(1110), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_macro_rules_BANG] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1110), + [anon_sym_i8] = ACTIONS(1110), + [anon_sym_u16] = ACTIONS(1110), + [anon_sym_i16] = ACTIONS(1110), + [anon_sym_u32] = ACTIONS(1110), + [anon_sym_i32] = ACTIONS(1110), + [anon_sym_u64] = ACTIONS(1110), + [anon_sym_i64] = ACTIONS(1110), + [anon_sym_u128] = ACTIONS(1110), + [anon_sym_i128] = ACTIONS(1110), + [anon_sym_isize] = ACTIONS(1110), + [anon_sym_usize] = ACTIONS(1110), + [anon_sym_f32] = ACTIONS(1110), + [anon_sym_f64] = ACTIONS(1110), + [anon_sym_bool] = ACTIONS(1110), + [anon_sym_str] = ACTIONS(1110), + [anon_sym_char] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_async] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_fn] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_impl] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1110), + [anon_sym_loop] = ACTIONS(1110), + [anon_sym_match] = ACTIONS(1110), + [anon_sym_mod] = ACTIONS(1110), + [anon_sym_pub] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_trait] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsafe] = ACTIONS(1110), + [anon_sym_use] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_POUND] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_DOT_DOT] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1110), + [anon_sym_move] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1108), + [aux_sym_string_literal_token1] = ACTIONS(1108), + [sym_char_literal] = ACTIONS(1108), + [anon_sym_true] = ACTIONS(1110), + [anon_sym_false] = ACTIONS(1110), + [sym_self] = ACTIONS(1110), + [sym_super] = ACTIONS(1110), + [sym_crate] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(1108), + [sym_raw_string_literal] = ACTIONS(1108), + [sym_float_literal] = ACTIONS(1108), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_macro_rules_BANG] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_u8] = ACTIONS(1116), - [anon_sym_i8] = ACTIONS(1116), - [anon_sym_u16] = ACTIONS(1116), - [anon_sym_i16] = ACTIONS(1116), - [anon_sym_u32] = ACTIONS(1116), - [anon_sym_i32] = ACTIONS(1116), - [anon_sym_u64] = ACTIONS(1116), - [anon_sym_i64] = ACTIONS(1116), - [anon_sym_u128] = ACTIONS(1116), - [anon_sym_i128] = ACTIONS(1116), - [anon_sym_isize] = ACTIONS(1116), - [anon_sym_usize] = ACTIONS(1116), - [anon_sym_f32] = ACTIONS(1116), - [anon_sym_f64] = ACTIONS(1116), - [anon_sym_bool] = ACTIONS(1116), - [anon_sym_str] = ACTIONS(1116), - [anon_sym_char] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_fn] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_impl] = ACTIONS(1116), - [anon_sym_let] = ACTIONS(1116), - [anon_sym_loop] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_mod] = ACTIONS(1116), - [anon_sym_pub] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_trait] = ACTIONS(1116), - [anon_sym_type] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_unsafe] = ACTIONS(1116), - [anon_sym_use] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_COLON_COLON] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_DOT_DOT] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_yield] = ACTIONS(1116), - [anon_sym_move] = ACTIONS(1116), - [sym_integer_literal] = ACTIONS(1114), - [aux_sym_string_literal_token1] = ACTIONS(1114), - [sym_char_literal] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1116), - [sym_super] = ACTIONS(1116), - [sym_crate] = ACTIONS(1116), - [sym_metavariable] = ACTIONS(1114), - [sym_raw_string_literal] = ACTIONS(1114), - [sym_float_literal] = ACTIONS(1114), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_macro_rules_BANG] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_u8] = ACTIONS(1114), + [anon_sym_i8] = ACTIONS(1114), + [anon_sym_u16] = ACTIONS(1114), + [anon_sym_i16] = ACTIONS(1114), + [anon_sym_u32] = ACTIONS(1114), + [anon_sym_i32] = ACTIONS(1114), + [anon_sym_u64] = ACTIONS(1114), + [anon_sym_i64] = ACTIONS(1114), + [anon_sym_u128] = ACTIONS(1114), + [anon_sym_i128] = ACTIONS(1114), + [anon_sym_isize] = ACTIONS(1114), + [anon_sym_usize] = ACTIONS(1114), + [anon_sym_f32] = ACTIONS(1114), + [anon_sym_f64] = ACTIONS(1114), + [anon_sym_bool] = ACTIONS(1114), + [anon_sym_str] = ACTIONS(1114), + [anon_sym_char] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_fn] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_impl] = ACTIONS(1114), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1114), + [anon_sym_mod] = ACTIONS(1114), + [anon_sym_pub] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_trait] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_unsafe] = ACTIONS(1114), + [anon_sym_use] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_COLON_COLON] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_DOT_DOT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1114), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_self] = ACTIONS(1114), + [sym_super] = ACTIONS(1114), + [sym_crate] = ACTIONS(1114), + [sym_metavariable] = ACTIONS(1112), + [sym_raw_string_literal] = ACTIONS(1112), + [sym_float_literal] = ACTIONS(1112), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_macro_rules_BANG] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_u8] = ACTIONS(1120), - [anon_sym_i8] = ACTIONS(1120), - [anon_sym_u16] = ACTIONS(1120), - [anon_sym_i16] = ACTIONS(1120), - [anon_sym_u32] = ACTIONS(1120), - [anon_sym_i32] = ACTIONS(1120), - [anon_sym_u64] = ACTIONS(1120), - [anon_sym_i64] = ACTIONS(1120), - [anon_sym_u128] = ACTIONS(1120), - [anon_sym_i128] = ACTIONS(1120), - [anon_sym_isize] = ACTIONS(1120), - [anon_sym_usize] = ACTIONS(1120), - [anon_sym_f32] = ACTIONS(1120), - [anon_sym_f64] = ACTIONS(1120), - [anon_sym_bool] = ACTIONS(1120), - [anon_sym_str] = ACTIONS(1120), - [anon_sym_char] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_async] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_fn] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_impl] = ACTIONS(1120), - [anon_sym_let] = ACTIONS(1120), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1120), - [anon_sym_mod] = ACTIONS(1120), - [anon_sym_pub] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_trait] = ACTIONS(1120), - [anon_sym_type] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_unsafe] = ACTIONS(1120), - [anon_sym_use] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_DOT_DOT] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_move] = ACTIONS(1120), - [sym_integer_literal] = ACTIONS(1118), - [aux_sym_string_literal_token1] = ACTIONS(1118), - [sym_char_literal] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1120), - [sym_super] = ACTIONS(1120), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1118), - [sym_raw_string_literal] = ACTIONS(1118), - [sym_float_literal] = ACTIONS(1118), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_macro_rules_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_u8] = ACTIONS(1118), + [anon_sym_i8] = ACTIONS(1118), + [anon_sym_u16] = ACTIONS(1118), + [anon_sym_i16] = ACTIONS(1118), + [anon_sym_u32] = ACTIONS(1118), + [anon_sym_i32] = ACTIONS(1118), + [anon_sym_u64] = ACTIONS(1118), + [anon_sym_i64] = ACTIONS(1118), + [anon_sym_u128] = ACTIONS(1118), + [anon_sym_i128] = ACTIONS(1118), + [anon_sym_isize] = ACTIONS(1118), + [anon_sym_usize] = ACTIONS(1118), + [anon_sym_f32] = ACTIONS(1118), + [anon_sym_f64] = ACTIONS(1118), + [anon_sym_bool] = ACTIONS(1118), + [anon_sym_str] = ACTIONS(1118), + [anon_sym_char] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_fn] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_impl] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_loop] = ACTIONS(1118), + [anon_sym_match] = ACTIONS(1118), + [anon_sym_mod] = ACTIONS(1118), + [anon_sym_pub] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_trait] = ACTIONS(1118), + [anon_sym_type] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_use] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_POUND] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_DOT_DOT] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_move] = ACTIONS(1118), + [sym_integer_literal] = ACTIONS(1116), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [sym_self] = ACTIONS(1118), + [sym_super] = ACTIONS(1118), + [sym_crate] = ACTIONS(1118), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1116), + [sym_float_literal] = ACTIONS(1116), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_macro_rules_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_u8] = ACTIONS(1124), - [anon_sym_i8] = ACTIONS(1124), - [anon_sym_u16] = ACTIONS(1124), - [anon_sym_i16] = ACTIONS(1124), - [anon_sym_u32] = ACTIONS(1124), - [anon_sym_i32] = ACTIONS(1124), - [anon_sym_u64] = ACTIONS(1124), - [anon_sym_i64] = ACTIONS(1124), - [anon_sym_u128] = ACTIONS(1124), - [anon_sym_i128] = ACTIONS(1124), - [anon_sym_isize] = ACTIONS(1124), - [anon_sym_usize] = ACTIONS(1124), - [anon_sym_f32] = ACTIONS(1124), - [anon_sym_f64] = ACTIONS(1124), - [anon_sym_bool] = ACTIONS(1124), - [anon_sym_str] = ACTIONS(1124), - [anon_sym_char] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_async] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_fn] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_impl] = ACTIONS(1124), - [anon_sym_let] = ACTIONS(1124), - [anon_sym_loop] = ACTIONS(1124), - [anon_sym_match] = ACTIONS(1124), - [anon_sym_mod] = ACTIONS(1124), - [anon_sym_pub] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_trait] = ACTIONS(1124), - [anon_sym_type] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_unsafe] = ACTIONS(1124), - [anon_sym_use] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_COLON_COLON] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_DOT_DOT] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1124), - [anon_sym_move] = ACTIONS(1124), - [sym_integer_literal] = ACTIONS(1122), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1124), - [sym_super] = ACTIONS(1124), - [sym_crate] = ACTIONS(1124), - [sym_metavariable] = ACTIONS(1122), - [sym_raw_string_literal] = ACTIONS(1122), - [sym_float_literal] = ACTIONS(1122), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_macro_rules_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_u8] = ACTIONS(1122), + [anon_sym_i8] = ACTIONS(1122), + [anon_sym_u16] = ACTIONS(1122), + [anon_sym_i16] = ACTIONS(1122), + [anon_sym_u32] = ACTIONS(1122), + [anon_sym_i32] = ACTIONS(1122), + [anon_sym_u64] = ACTIONS(1122), + [anon_sym_i64] = ACTIONS(1122), + [anon_sym_u128] = ACTIONS(1122), + [anon_sym_i128] = ACTIONS(1122), + [anon_sym_isize] = ACTIONS(1122), + [anon_sym_usize] = ACTIONS(1122), + [anon_sym_f32] = ACTIONS(1122), + [anon_sym_f64] = ACTIONS(1122), + [anon_sym_bool] = ACTIONS(1122), + [anon_sym_str] = ACTIONS(1122), + [anon_sym_char] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_fn] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_impl] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1122), + [anon_sym_loop] = ACTIONS(1122), + [anon_sym_match] = ACTIONS(1122), + [anon_sym_mod] = ACTIONS(1122), + [anon_sym_pub] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_trait] = ACTIONS(1122), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_unsafe] = ACTIONS(1122), + [anon_sym_use] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_COLON_COLON] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_DOT_DOT] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_move] = ACTIONS(1122), + [sym_integer_literal] = ACTIONS(1120), + [aux_sym_string_literal_token1] = ACTIONS(1120), + [sym_char_literal] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1122), + [anon_sym_false] = ACTIONS(1122), + [sym_self] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1120), + [sym_raw_string_literal] = ACTIONS(1120), + [sym_float_literal] = ACTIONS(1120), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_macro_rules_BANG] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_u8] = ACTIONS(1128), - [anon_sym_i8] = ACTIONS(1128), - [anon_sym_u16] = ACTIONS(1128), - [anon_sym_i16] = ACTIONS(1128), - [anon_sym_u32] = ACTIONS(1128), - [anon_sym_i32] = ACTIONS(1128), - [anon_sym_u64] = ACTIONS(1128), - [anon_sym_i64] = ACTIONS(1128), - [anon_sym_u128] = ACTIONS(1128), - [anon_sym_i128] = ACTIONS(1128), - [anon_sym_isize] = ACTIONS(1128), - [anon_sym_usize] = ACTIONS(1128), - [anon_sym_f32] = ACTIONS(1128), - [anon_sym_f64] = ACTIONS(1128), - [anon_sym_bool] = ACTIONS(1128), - [anon_sym_str] = ACTIONS(1128), - [anon_sym_char] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_fn] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_impl] = ACTIONS(1128), - [anon_sym_let] = ACTIONS(1128), - [anon_sym_loop] = ACTIONS(1128), - [anon_sym_match] = ACTIONS(1128), - [anon_sym_mod] = ACTIONS(1128), - [anon_sym_pub] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_trait] = ACTIONS(1128), - [anon_sym_type] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsafe] = ACTIONS(1128), - [anon_sym_use] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_move] = ACTIONS(1128), - [sym_integer_literal] = ACTIONS(1126), - [aux_sym_string_literal_token1] = ACTIONS(1126), - [sym_char_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1126), - [sym_raw_string_literal] = ACTIONS(1126), - [sym_float_literal] = ACTIONS(1126), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_macro_rules_BANG] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_u8] = ACTIONS(1126), + [anon_sym_i8] = ACTIONS(1126), + [anon_sym_u16] = ACTIONS(1126), + [anon_sym_i16] = ACTIONS(1126), + [anon_sym_u32] = ACTIONS(1126), + [anon_sym_i32] = ACTIONS(1126), + [anon_sym_u64] = ACTIONS(1126), + [anon_sym_i64] = ACTIONS(1126), + [anon_sym_u128] = ACTIONS(1126), + [anon_sym_i128] = ACTIONS(1126), + [anon_sym_isize] = ACTIONS(1126), + [anon_sym_usize] = ACTIONS(1126), + [anon_sym_f32] = ACTIONS(1126), + [anon_sym_f64] = ACTIONS(1126), + [anon_sym_bool] = ACTIONS(1126), + [anon_sym_str] = ACTIONS(1126), + [anon_sym_char] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_async] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_fn] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_impl] = ACTIONS(1126), + [anon_sym_let] = ACTIONS(1126), + [anon_sym_loop] = ACTIONS(1126), + [anon_sym_match] = ACTIONS(1126), + [anon_sym_mod] = ACTIONS(1126), + [anon_sym_pub] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_trait] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_unsafe] = ACTIONS(1126), + [anon_sym_use] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_COLON_COLON] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_DOT_DOT] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_move] = ACTIONS(1126), + [sym_integer_literal] = ACTIONS(1124), + [aux_sym_string_literal_token1] = ACTIONS(1124), + [sym_char_literal] = ACTIONS(1124), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [sym_self] = ACTIONS(1126), + [sym_super] = ACTIONS(1126), + [sym_crate] = ACTIONS(1126), + [sym_metavariable] = ACTIONS(1124), + [sym_raw_string_literal] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1124), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_macro_rules_BANG] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_u8] = ACTIONS(1132), - [anon_sym_i8] = ACTIONS(1132), - [anon_sym_u16] = ACTIONS(1132), - [anon_sym_i16] = ACTIONS(1132), - [anon_sym_u32] = ACTIONS(1132), - [anon_sym_i32] = ACTIONS(1132), - [anon_sym_u64] = ACTIONS(1132), - [anon_sym_i64] = ACTIONS(1132), - [anon_sym_u128] = ACTIONS(1132), - [anon_sym_i128] = ACTIONS(1132), - [anon_sym_isize] = ACTIONS(1132), - [anon_sym_usize] = ACTIONS(1132), - [anon_sym_f32] = ACTIONS(1132), - [anon_sym_f64] = ACTIONS(1132), - [anon_sym_bool] = ACTIONS(1132), - [anon_sym_str] = ACTIONS(1132), - [anon_sym_char] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_fn] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_impl] = ACTIONS(1132), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_loop] = ACTIONS(1132), - [anon_sym_match] = ACTIONS(1132), - [anon_sym_mod] = ACTIONS(1132), - [anon_sym_pub] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_trait] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_use] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_COLON_COLON] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_DOT_DOT] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_yield] = ACTIONS(1132), - [anon_sym_move] = ACTIONS(1132), - [sym_integer_literal] = ACTIONS(1130), - [aux_sym_string_literal_token1] = ACTIONS(1130), - [sym_char_literal] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1132), - [anon_sym_false] = ACTIONS(1132), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1132), - [sym_super] = ACTIONS(1132), - [sym_crate] = ACTIONS(1132), - [sym_metavariable] = ACTIONS(1130), - [sym_raw_string_literal] = ACTIONS(1130), - [sym_float_literal] = ACTIONS(1130), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_macro_rules_BANG] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_u8] = ACTIONS(1130), + [anon_sym_i8] = ACTIONS(1130), + [anon_sym_u16] = ACTIONS(1130), + [anon_sym_i16] = ACTIONS(1130), + [anon_sym_u32] = ACTIONS(1130), + [anon_sym_i32] = ACTIONS(1130), + [anon_sym_u64] = ACTIONS(1130), + [anon_sym_i64] = ACTIONS(1130), + [anon_sym_u128] = ACTIONS(1130), + [anon_sym_i128] = ACTIONS(1130), + [anon_sym_isize] = ACTIONS(1130), + [anon_sym_usize] = ACTIONS(1130), + [anon_sym_f32] = ACTIONS(1130), + [anon_sym_f64] = ACTIONS(1130), + [anon_sym_bool] = ACTIONS(1130), + [anon_sym_str] = ACTIONS(1130), + [anon_sym_char] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_fn] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_impl] = ACTIONS(1130), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_loop] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1130), + [anon_sym_mod] = ACTIONS(1130), + [anon_sym_pub] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_trait] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_unsafe] = ACTIONS(1130), + [anon_sym_use] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_COLON_COLON] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_DOT_DOT] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1130), + [anon_sym_move] = ACTIONS(1130), + [sym_integer_literal] = ACTIONS(1128), + [aux_sym_string_literal_token1] = ACTIONS(1128), + [sym_char_literal] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [sym_self] = ACTIONS(1130), + [sym_super] = ACTIONS(1130), + [sym_crate] = ACTIONS(1130), + [sym_metavariable] = ACTIONS(1128), + [sym_raw_string_literal] = ACTIONS(1128), + [sym_float_literal] = ACTIONS(1128), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_macro_rules_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_u8] = ACTIONS(1136), - [anon_sym_i8] = ACTIONS(1136), - [anon_sym_u16] = ACTIONS(1136), - [anon_sym_i16] = ACTIONS(1136), - [anon_sym_u32] = ACTIONS(1136), - [anon_sym_i32] = ACTIONS(1136), - [anon_sym_u64] = ACTIONS(1136), - [anon_sym_i64] = ACTIONS(1136), - [anon_sym_u128] = ACTIONS(1136), - [anon_sym_i128] = ACTIONS(1136), - [anon_sym_isize] = ACTIONS(1136), - [anon_sym_usize] = ACTIONS(1136), - [anon_sym_f32] = ACTIONS(1136), - [anon_sym_f64] = ACTIONS(1136), - [anon_sym_bool] = ACTIONS(1136), - [anon_sym_str] = ACTIONS(1136), - [anon_sym_char] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_async] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_fn] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_impl] = ACTIONS(1136), - [anon_sym_let] = ACTIONS(1136), - [anon_sym_loop] = ACTIONS(1136), - [anon_sym_match] = ACTIONS(1136), - [anon_sym_mod] = ACTIONS(1136), - [anon_sym_pub] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_trait] = ACTIONS(1136), - [anon_sym_type] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_unsafe] = ACTIONS(1136), - [anon_sym_use] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_COLON_COLON] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_move] = ACTIONS(1136), - [sym_integer_literal] = ACTIONS(1134), - [aux_sym_string_literal_token1] = ACTIONS(1134), - [sym_char_literal] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_crate] = ACTIONS(1136), - [sym_metavariable] = ACTIONS(1134), - [sym_raw_string_literal] = ACTIONS(1134), - [sym_float_literal] = ACTIONS(1134), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_macro_rules_BANG] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u128] = ACTIONS(1134), + [anon_sym_i128] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_str] = ACTIONS(1134), + [anon_sym_char] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_fn] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_impl] = ACTIONS(1134), + [anon_sym_let] = ACTIONS(1134), + [anon_sym_loop] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_mod] = ACTIONS(1134), + [anon_sym_pub] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_trait] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_unsafe] = ACTIONS(1134), + [anon_sym_use] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_POUND] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_DOT_DOT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1134), + [anon_sym_move] = ACTIONS(1134), + [sym_integer_literal] = ACTIONS(1132), + [aux_sym_string_literal_token1] = ACTIONS(1132), + [sym_char_literal] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [sym_self] = ACTIONS(1134), + [sym_super] = ACTIONS(1134), + [sym_crate] = ACTIONS(1134), + [sym_metavariable] = ACTIONS(1132), + [sym_raw_string_literal] = ACTIONS(1132), + [sym_float_literal] = ACTIONS(1132), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_macro_rules_BANG] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_fn] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_impl] = ACTIONS(1140), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_mod] = ACTIONS(1140), - [anon_sym_pub] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_trait] = ACTIONS(1140), - [anon_sym_type] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_unsafe] = ACTIONS(1140), - [anon_sym_use] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_COLON_COLON] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_move] = ACTIONS(1140), - [sym_integer_literal] = ACTIONS(1138), - [aux_sym_string_literal_token1] = ACTIONS(1138), - [sym_char_literal] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1140), - [sym_super] = ACTIONS(1140), - [sym_crate] = ACTIONS(1140), - [sym_metavariable] = ACTIONS(1138), - [sym_raw_string_literal] = ACTIONS(1138), - [sym_float_literal] = ACTIONS(1138), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_macro_rules_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_u8] = ACTIONS(1138), + [anon_sym_i8] = ACTIONS(1138), + [anon_sym_u16] = ACTIONS(1138), + [anon_sym_i16] = ACTIONS(1138), + [anon_sym_u32] = ACTIONS(1138), + [anon_sym_i32] = ACTIONS(1138), + [anon_sym_u64] = ACTIONS(1138), + [anon_sym_i64] = ACTIONS(1138), + [anon_sym_u128] = ACTIONS(1138), + [anon_sym_i128] = ACTIONS(1138), + [anon_sym_isize] = ACTIONS(1138), + [anon_sym_usize] = ACTIONS(1138), + [anon_sym_f32] = ACTIONS(1138), + [anon_sym_f64] = ACTIONS(1138), + [anon_sym_bool] = ACTIONS(1138), + [anon_sym_str] = ACTIONS(1138), + [anon_sym_char] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_fn] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_impl] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_loop] = ACTIONS(1138), + [anon_sym_match] = ACTIONS(1138), + [anon_sym_mod] = ACTIONS(1138), + [anon_sym_pub] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_trait] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_unsafe] = ACTIONS(1138), + [anon_sym_use] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1136), + [aux_sym_string_literal_token1] = ACTIONS(1136), + [sym_char_literal] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [sym_self] = ACTIONS(1138), + [sym_super] = ACTIONS(1138), + [sym_crate] = ACTIONS(1138), + [sym_metavariable] = ACTIONS(1136), + [sym_raw_string_literal] = ACTIONS(1136), + [sym_float_literal] = ACTIONS(1136), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym_macro_rules_BANG] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_u8] = ACTIONS(1144), - [anon_sym_i8] = ACTIONS(1144), - [anon_sym_u16] = ACTIONS(1144), - [anon_sym_i16] = ACTIONS(1144), - [anon_sym_u32] = ACTIONS(1144), - [anon_sym_i32] = ACTIONS(1144), - [anon_sym_u64] = ACTIONS(1144), - [anon_sym_i64] = ACTIONS(1144), - [anon_sym_u128] = ACTIONS(1144), - [anon_sym_i128] = ACTIONS(1144), - [anon_sym_isize] = ACTIONS(1144), - [anon_sym_usize] = ACTIONS(1144), - [anon_sym_f32] = ACTIONS(1144), - [anon_sym_f64] = ACTIONS(1144), - [anon_sym_bool] = ACTIONS(1144), - [anon_sym_str] = ACTIONS(1144), - [anon_sym_char] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_fn] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_impl] = ACTIONS(1144), - [anon_sym_let] = ACTIONS(1144), - [anon_sym_loop] = ACTIONS(1144), - [anon_sym_match] = ACTIONS(1144), - [anon_sym_mod] = ACTIONS(1144), - [anon_sym_pub] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_trait] = ACTIONS(1144), - [anon_sym_type] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_unsafe] = ACTIONS(1144), - [anon_sym_use] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1142), - [anon_sym_COLON_COLON] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1142), - [aux_sym_string_literal_token1] = ACTIONS(1142), - [sym_char_literal] = ACTIONS(1142), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1144), - [sym_super] = ACTIONS(1144), - [sym_crate] = ACTIONS(1144), - [sym_metavariable] = ACTIONS(1142), - [sym_raw_string_literal] = ACTIONS(1142), - [sym_float_literal] = ACTIONS(1142), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_macro_rules_BANG] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u128] = ACTIONS(1142), + [anon_sym_i128] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_str] = ACTIONS(1142), + [anon_sym_char] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_fn] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_impl] = ACTIONS(1142), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_loop] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_mod] = ACTIONS(1142), + [anon_sym_pub] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_trait] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_unsafe] = ACTIONS(1142), + [anon_sym_use] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1140), + [aux_sym_string_literal_token1] = ACTIONS(1140), + [sym_char_literal] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_self] = ACTIONS(1142), + [sym_super] = ACTIONS(1142), + [sym_crate] = ACTIONS(1142), + [sym_metavariable] = ACTIONS(1140), + [sym_raw_string_literal] = ACTIONS(1140), + [sym_float_literal] = ACTIONS(1140), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_macro_rules_BANG] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_u8] = ACTIONS(1148), - [anon_sym_i8] = ACTIONS(1148), - [anon_sym_u16] = ACTIONS(1148), - [anon_sym_i16] = ACTIONS(1148), - [anon_sym_u32] = ACTIONS(1148), - [anon_sym_i32] = ACTIONS(1148), - [anon_sym_u64] = ACTIONS(1148), - [anon_sym_i64] = ACTIONS(1148), - [anon_sym_u128] = ACTIONS(1148), - [anon_sym_i128] = ACTIONS(1148), - [anon_sym_isize] = ACTIONS(1148), - [anon_sym_usize] = ACTIONS(1148), - [anon_sym_f32] = ACTIONS(1148), - [anon_sym_f64] = ACTIONS(1148), - [anon_sym_bool] = ACTIONS(1148), - [anon_sym_str] = ACTIONS(1148), - [anon_sym_char] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_async] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_fn] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_impl] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_pub] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_trait] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_unsafe] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_move] = ACTIONS(1148), - [sym_integer_literal] = ACTIONS(1146), - [aux_sym_string_literal_token1] = ACTIONS(1146), - [sym_char_literal] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1148), - [sym_super] = ACTIONS(1148), - [sym_crate] = ACTIONS(1148), - [sym_metavariable] = ACTIONS(1146), - [sym_raw_string_literal] = ACTIONS(1146), - [sym_float_literal] = ACTIONS(1146), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_macro_rules_BANG] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_u8] = ACTIONS(1146), + [anon_sym_i8] = ACTIONS(1146), + [anon_sym_u16] = ACTIONS(1146), + [anon_sym_i16] = ACTIONS(1146), + [anon_sym_u32] = ACTIONS(1146), + [anon_sym_i32] = ACTIONS(1146), + [anon_sym_u64] = ACTIONS(1146), + [anon_sym_i64] = ACTIONS(1146), + [anon_sym_u128] = ACTIONS(1146), + [anon_sym_i128] = ACTIONS(1146), + [anon_sym_isize] = ACTIONS(1146), + [anon_sym_usize] = ACTIONS(1146), + [anon_sym_f32] = ACTIONS(1146), + [anon_sym_f64] = ACTIONS(1146), + [anon_sym_bool] = ACTIONS(1146), + [anon_sym_str] = ACTIONS(1146), + [anon_sym_char] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_impl] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_loop] = ACTIONS(1146), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_mod] = ACTIONS(1146), + [anon_sym_pub] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_trait] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_unsafe] = ACTIONS(1146), + [anon_sym_use] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_move] = ACTIONS(1146), + [sym_integer_literal] = ACTIONS(1144), + [aux_sym_string_literal_token1] = ACTIONS(1144), + [sym_char_literal] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [sym_self] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_crate] = ACTIONS(1146), + [sym_metavariable] = ACTIONS(1144), + [sym_raw_string_literal] = ACTIONS(1144), + [sym_float_literal] = ACTIONS(1144), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_macro_rules_BANG] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_u8] = ACTIONS(1152), - [anon_sym_i8] = ACTIONS(1152), - [anon_sym_u16] = ACTIONS(1152), - [anon_sym_i16] = ACTIONS(1152), - [anon_sym_u32] = ACTIONS(1152), - [anon_sym_i32] = ACTIONS(1152), - [anon_sym_u64] = ACTIONS(1152), - [anon_sym_i64] = ACTIONS(1152), - [anon_sym_u128] = ACTIONS(1152), - [anon_sym_i128] = ACTIONS(1152), - [anon_sym_isize] = ACTIONS(1152), - [anon_sym_usize] = ACTIONS(1152), - [anon_sym_f32] = ACTIONS(1152), - [anon_sym_f64] = ACTIONS(1152), - [anon_sym_bool] = ACTIONS(1152), - [anon_sym_str] = ACTIONS(1152), - [anon_sym_char] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_fn] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_impl] = ACTIONS(1152), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_loop] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_mod] = ACTIONS(1152), - [anon_sym_pub] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_trait] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_unsafe] = ACTIONS(1152), - [anon_sym_use] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_COLON_COLON] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [sym_integer_literal] = ACTIONS(1150), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1152), - [sym_super] = ACTIONS(1152), - [sym_crate] = ACTIONS(1152), - [sym_metavariable] = ACTIONS(1150), - [sym_raw_string_literal] = ACTIONS(1150), - [sym_float_literal] = ACTIONS(1150), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_macro_rules_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_COLON_COLON] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_DOT_DOT] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1148), + [aux_sym_string_literal_token1] = ACTIONS(1148), + [sym_char_literal] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1148), + [sym_raw_string_literal] = ACTIONS(1148), + [sym_float_literal] = ACTIONS(1148), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_macro_rules_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_u8] = ACTIONS(1156), - [anon_sym_i8] = ACTIONS(1156), - [anon_sym_u16] = ACTIONS(1156), - [anon_sym_i16] = ACTIONS(1156), - [anon_sym_u32] = ACTIONS(1156), - [anon_sym_i32] = ACTIONS(1156), - [anon_sym_u64] = ACTIONS(1156), - [anon_sym_i64] = ACTIONS(1156), - [anon_sym_u128] = ACTIONS(1156), - [anon_sym_i128] = ACTIONS(1156), - [anon_sym_isize] = ACTIONS(1156), - [anon_sym_usize] = ACTIONS(1156), - [anon_sym_f32] = ACTIONS(1156), - [anon_sym_f64] = ACTIONS(1156), - [anon_sym_bool] = ACTIONS(1156), - [anon_sym_str] = ACTIONS(1156), - [anon_sym_char] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_async] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_fn] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_impl] = ACTIONS(1156), - [anon_sym_let] = ACTIONS(1156), - [anon_sym_loop] = ACTIONS(1156), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_mod] = ACTIONS(1156), - [anon_sym_pub] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_trait] = ACTIONS(1156), - [anon_sym_type] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_unsafe] = ACTIONS(1156), - [anon_sym_use] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_move] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1154), - [aux_sym_string_literal_token1] = ACTIONS(1154), - [sym_char_literal] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1156), - [sym_crate] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1154), - [sym_raw_string_literal] = ACTIONS(1154), - [sym_float_literal] = ACTIONS(1154), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_macro_rules_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_fn] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_impl] = ACTIONS(1154), + [anon_sym_let] = ACTIONS(1154), + [anon_sym_loop] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1154), + [anon_sym_mod] = ACTIONS(1154), + [anon_sym_pub] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_trait] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_unsafe] = ACTIONS(1154), + [anon_sym_use] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_POUND] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_COLON_COLON] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_DOT_DOT] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1154), + [anon_sym_move] = ACTIONS(1154), + [sym_integer_literal] = ACTIONS(1152), + [aux_sym_string_literal_token1] = ACTIONS(1152), + [sym_char_literal] = ACTIONS(1152), + [anon_sym_true] = ACTIONS(1154), + [anon_sym_false] = ACTIONS(1154), + [sym_self] = ACTIONS(1154), + [sym_super] = ACTIONS(1154), + [sym_crate] = ACTIONS(1154), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(1152), + [sym_float_literal] = ACTIONS(1152), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_macro_rules_BANG] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_async] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_impl] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_loop] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_pub] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_trait] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_unsafe] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1160), - [sym_integer_literal] = ACTIONS(1158), - [aux_sym_string_literal_token1] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1160), - [sym_super] = ACTIONS(1160), - [sym_crate] = ACTIONS(1160), - [sym_metavariable] = ACTIONS(1158), - [sym_raw_string_literal] = ACTIONS(1158), - [sym_float_literal] = ACTIONS(1158), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_macro_rules_BANG] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_u8] = ACTIONS(1158), + [anon_sym_i8] = ACTIONS(1158), + [anon_sym_u16] = ACTIONS(1158), + [anon_sym_i16] = ACTIONS(1158), + [anon_sym_u32] = ACTIONS(1158), + [anon_sym_i32] = ACTIONS(1158), + [anon_sym_u64] = ACTIONS(1158), + [anon_sym_i64] = ACTIONS(1158), + [anon_sym_u128] = ACTIONS(1158), + [anon_sym_i128] = ACTIONS(1158), + [anon_sym_isize] = ACTIONS(1158), + [anon_sym_usize] = ACTIONS(1158), + [anon_sym_f32] = ACTIONS(1158), + [anon_sym_f64] = ACTIONS(1158), + [anon_sym_bool] = ACTIONS(1158), + [anon_sym_str] = ACTIONS(1158), + [anon_sym_char] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [anon_sym_async] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_fn] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_impl] = ACTIONS(1158), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_loop] = ACTIONS(1158), + [anon_sym_match] = ACTIONS(1158), + [anon_sym_mod] = ACTIONS(1158), + [anon_sym_pub] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_trait] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_unsafe] = ACTIONS(1158), + [anon_sym_use] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_POUND] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_COLON_COLON] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_DOT_DOT] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1158), + [anon_sym_move] = ACTIONS(1158), + [sym_integer_literal] = ACTIONS(1156), + [aux_sym_string_literal_token1] = ACTIONS(1156), + [sym_char_literal] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [sym_self] = ACTIONS(1158), + [sym_super] = ACTIONS(1158), + [sym_crate] = ACTIONS(1158), + [sym_metavariable] = ACTIONS(1156), + [sym_raw_string_literal] = ACTIONS(1156), + [sym_float_literal] = ACTIONS(1156), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_macro_rules_BANG] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_u8] = ACTIONS(1164), - [anon_sym_i8] = ACTIONS(1164), - [anon_sym_u16] = ACTIONS(1164), - [anon_sym_i16] = ACTIONS(1164), - [anon_sym_u32] = ACTIONS(1164), - [anon_sym_i32] = ACTIONS(1164), - [anon_sym_u64] = ACTIONS(1164), - [anon_sym_i64] = ACTIONS(1164), - [anon_sym_u128] = ACTIONS(1164), - [anon_sym_i128] = ACTIONS(1164), - [anon_sym_isize] = ACTIONS(1164), - [anon_sym_usize] = ACTIONS(1164), - [anon_sym_f32] = ACTIONS(1164), - [anon_sym_f64] = ACTIONS(1164), - [anon_sym_bool] = ACTIONS(1164), - [anon_sym_str] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_impl] = ACTIONS(1164), - [anon_sym_let] = ACTIONS(1164), - [anon_sym_loop] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_mod] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_unsafe] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_move] = ACTIONS(1164), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1162), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_super] = ACTIONS(1164), - [sym_crate] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_macro_rules_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1162), + [anon_sym_i8] = ACTIONS(1162), + [anon_sym_u16] = ACTIONS(1162), + [anon_sym_i16] = ACTIONS(1162), + [anon_sym_u32] = ACTIONS(1162), + [anon_sym_i32] = ACTIONS(1162), + [anon_sym_u64] = ACTIONS(1162), + [anon_sym_i64] = ACTIONS(1162), + [anon_sym_u128] = ACTIONS(1162), + [anon_sym_i128] = ACTIONS(1162), + [anon_sym_isize] = ACTIONS(1162), + [anon_sym_usize] = ACTIONS(1162), + [anon_sym_f32] = ACTIONS(1162), + [anon_sym_f64] = ACTIONS(1162), + [anon_sym_bool] = ACTIONS(1162), + [anon_sym_str] = ACTIONS(1162), + [anon_sym_char] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [anon_sym_async] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_fn] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_impl] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1162), + [anon_sym_loop] = ACTIONS(1162), + [anon_sym_match] = ACTIONS(1162), + [anon_sym_mod] = ACTIONS(1162), + [anon_sym_pub] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_trait] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_unsafe] = ACTIONS(1162), + [anon_sym_use] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_COLON_COLON] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1162), + [sym_integer_literal] = ACTIONS(1160), + [aux_sym_string_literal_token1] = ACTIONS(1160), + [sym_char_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [sym_self] = ACTIONS(1162), + [sym_super] = ACTIONS(1162), + [sym_crate] = ACTIONS(1162), + [sym_metavariable] = ACTIONS(1160), + [sym_raw_string_literal] = ACTIONS(1160), + [sym_float_literal] = ACTIONS(1160), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_macro_rules_BANG] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_async] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_impl] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_pub] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_trait] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsafe] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_move] = ACTIONS(1168), - [sym_integer_literal] = ACTIONS(1166), - [aux_sym_string_literal_token1] = ACTIONS(1166), - [sym_char_literal] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1168), - [sym_super] = ACTIONS(1168), - [sym_crate] = ACTIONS(1168), - [sym_metavariable] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1166), - [sym_float_literal] = ACTIONS(1166), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_macro_rules_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_u8] = ACTIONS(1166), + [anon_sym_i8] = ACTIONS(1166), + [anon_sym_u16] = ACTIONS(1166), + [anon_sym_i16] = ACTIONS(1166), + [anon_sym_u32] = ACTIONS(1166), + [anon_sym_i32] = ACTIONS(1166), + [anon_sym_u64] = ACTIONS(1166), + [anon_sym_i64] = ACTIONS(1166), + [anon_sym_u128] = ACTIONS(1166), + [anon_sym_i128] = ACTIONS(1166), + [anon_sym_isize] = ACTIONS(1166), + [anon_sym_usize] = ACTIONS(1166), + [anon_sym_f32] = ACTIONS(1166), + [anon_sym_f64] = ACTIONS(1166), + [anon_sym_bool] = ACTIONS(1166), + [anon_sym_str] = ACTIONS(1166), + [anon_sym_char] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [anon_sym_async] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_fn] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1166), + [anon_sym_let] = ACTIONS(1166), + [anon_sym_loop] = ACTIONS(1166), + [anon_sym_match] = ACTIONS(1166), + [anon_sym_mod] = ACTIONS(1166), + [anon_sym_pub] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_trait] = ACTIONS(1166), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_POUND] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1164), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1164), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_self] = ACTIONS(1166), + [sym_super] = ACTIONS(1166), + [sym_crate] = ACTIONS(1166), + [sym_metavariable] = ACTIONS(1164), + [sym_raw_string_literal] = ACTIONS(1164), + [sym_float_literal] = ACTIONS(1164), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_macro_rules_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_unsafe] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_super] = ACTIONS(1172), - [sym_crate] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_macro_rules_BANG] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_fn] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_impl] = ACTIONS(1170), + [anon_sym_let] = ACTIONS(1170), + [anon_sym_loop] = ACTIONS(1170), + [anon_sym_match] = ACTIONS(1170), + [anon_sym_mod] = ACTIONS(1170), + [anon_sym_pub] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_trait] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_unsafe] = ACTIONS(1170), + [anon_sym_use] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_POUND] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_COLON_COLON] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_DOT_DOT] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_move] = ACTIONS(1170), + [sym_integer_literal] = ACTIONS(1168), + [aux_sym_string_literal_token1] = ACTIONS(1168), + [sym_char_literal] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1170), + [anon_sym_false] = ACTIONS(1170), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1168), + [sym_float_literal] = ACTIONS(1168), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_macro_rules_BANG] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_mod] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_unsafe] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_super] = ACTIONS(1176), - [sym_crate] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_macro_rules_BANG] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_async] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_fn] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_impl] = ACTIONS(1174), + [anon_sym_let] = ACTIONS(1174), + [anon_sym_loop] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_mod] = ACTIONS(1174), + [anon_sym_pub] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_trait] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_unsafe] = ACTIONS(1174), + [anon_sym_use] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_move] = ACTIONS(1174), + [sym_integer_literal] = ACTIONS(1172), + [aux_sym_string_literal_token1] = ACTIONS(1172), + [sym_char_literal] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_self] = ACTIONS(1174), + [sym_super] = ACTIONS(1174), + [sym_crate] = ACTIONS(1174), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1172), + [sym_float_literal] = ACTIONS(1172), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_macro_rules_BANG] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_loop] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_mod] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_macro_rules_BANG] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_u8] = ACTIONS(1178), + [anon_sym_i8] = ACTIONS(1178), + [anon_sym_u16] = ACTIONS(1178), + [anon_sym_i16] = ACTIONS(1178), + [anon_sym_u32] = ACTIONS(1178), + [anon_sym_i32] = ACTIONS(1178), + [anon_sym_u64] = ACTIONS(1178), + [anon_sym_i64] = ACTIONS(1178), + [anon_sym_u128] = ACTIONS(1178), + [anon_sym_i128] = ACTIONS(1178), + [anon_sym_isize] = ACTIONS(1178), + [anon_sym_usize] = ACTIONS(1178), + [anon_sym_f32] = ACTIONS(1178), + [anon_sym_f64] = ACTIONS(1178), + [anon_sym_bool] = ACTIONS(1178), + [anon_sym_str] = ACTIONS(1178), + [anon_sym_char] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_fn] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_impl] = ACTIONS(1178), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_loop] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1178), + [anon_sym_mod] = ACTIONS(1178), + [anon_sym_pub] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_trait] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_unsafe] = ACTIONS(1178), + [anon_sym_use] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1178), + [anon_sym_move] = ACTIONS(1178), + [sym_integer_literal] = ACTIONS(1176), + [aux_sym_string_literal_token1] = ACTIONS(1176), + [sym_char_literal] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1178), + [anon_sym_false] = ACTIONS(1178), + [sym_self] = ACTIONS(1178), + [sym_super] = ACTIONS(1178), + [sym_crate] = ACTIONS(1178), + [sym_metavariable] = ACTIONS(1176), + [sym_raw_string_literal] = ACTIONS(1176), + [sym_float_literal] = ACTIONS(1176), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_macro_rules_BANG] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_u8] = ACTIONS(1184), - [anon_sym_i8] = ACTIONS(1184), - [anon_sym_u16] = ACTIONS(1184), - [anon_sym_i16] = ACTIONS(1184), - [anon_sym_u32] = ACTIONS(1184), - [anon_sym_i32] = ACTIONS(1184), - [anon_sym_u64] = ACTIONS(1184), - [anon_sym_i64] = ACTIONS(1184), - [anon_sym_u128] = ACTIONS(1184), - [anon_sym_i128] = ACTIONS(1184), - [anon_sym_isize] = ACTIONS(1184), - [anon_sym_usize] = ACTIONS(1184), - [anon_sym_f32] = ACTIONS(1184), - [anon_sym_f64] = ACTIONS(1184), - [anon_sym_bool] = ACTIONS(1184), - [anon_sym_str] = ACTIONS(1184), - [anon_sym_char] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_fn] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_impl] = ACTIONS(1184), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_loop] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_mod] = ACTIONS(1184), - [anon_sym_pub] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_trait] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_unsafe] = ACTIONS(1184), - [anon_sym_use] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_macro_rules_BANG] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_u8] = ACTIONS(1182), + [anon_sym_i8] = ACTIONS(1182), + [anon_sym_u16] = ACTIONS(1182), + [anon_sym_i16] = ACTIONS(1182), + [anon_sym_u32] = ACTIONS(1182), + [anon_sym_i32] = ACTIONS(1182), + [anon_sym_u64] = ACTIONS(1182), + [anon_sym_i64] = ACTIONS(1182), + [anon_sym_u128] = ACTIONS(1182), + [anon_sym_i128] = ACTIONS(1182), + [anon_sym_isize] = ACTIONS(1182), + [anon_sym_usize] = ACTIONS(1182), + [anon_sym_f32] = ACTIONS(1182), + [anon_sym_f64] = ACTIONS(1182), + [anon_sym_bool] = ACTIONS(1182), + [anon_sym_str] = ACTIONS(1182), + [anon_sym_char] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_const] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1182), + [anon_sym_enum] = ACTIONS(1182), + [anon_sym_fn] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_impl] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1182), + [anon_sym_loop] = ACTIONS(1182), + [anon_sym_match] = ACTIONS(1182), + [anon_sym_mod] = ACTIONS(1182), + [anon_sym_pub] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_trait] = ACTIONS(1182), + [anon_sym_type] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(1182), + [anon_sym_unsafe] = ACTIONS(1182), + [anon_sym_use] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_POUND] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_extern] = ACTIONS(1182), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_DOT_DOT] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1182), + [anon_sym_move] = ACTIONS(1182), + [sym_integer_literal] = ACTIONS(1180), + [aux_sym_string_literal_token1] = ACTIONS(1180), + [sym_char_literal] = ACTIONS(1180), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [sym_self] = ACTIONS(1182), + [sym_super] = ACTIONS(1182), + [sym_crate] = ACTIONS(1182), + [sym_metavariable] = ACTIONS(1180), + [sym_raw_string_literal] = ACTIONS(1180), + [sym_float_literal] = ACTIONS(1180), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_macro_rules_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1188), - [anon_sym_i8] = ACTIONS(1188), - [anon_sym_u16] = ACTIONS(1188), - [anon_sym_i16] = ACTIONS(1188), - [anon_sym_u32] = ACTIONS(1188), - [anon_sym_i32] = ACTIONS(1188), - [anon_sym_u64] = ACTIONS(1188), - [anon_sym_i64] = ACTIONS(1188), - [anon_sym_u128] = ACTIONS(1188), - [anon_sym_i128] = ACTIONS(1188), - [anon_sym_isize] = ACTIONS(1188), - [anon_sym_usize] = ACTIONS(1188), - [anon_sym_f32] = ACTIONS(1188), - [anon_sym_f64] = ACTIONS(1188), - [anon_sym_bool] = ACTIONS(1188), - [anon_sym_str] = ACTIONS(1188), - [anon_sym_char] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_impl] = ACTIONS(1188), - [anon_sym_let] = ACTIONS(1188), - [anon_sym_loop] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_pub] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_trait] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_unsafe] = ACTIONS(1188), - [anon_sym_use] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [sym_integer_literal] = ACTIONS(1186), - [aux_sym_string_literal_token1] = ACTIONS(1186), - [sym_char_literal] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1188), - [sym_super] = ACTIONS(1188), - [sym_crate] = ACTIONS(1188), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1186), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_macro_rules_BANG] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u128] = ACTIONS(1186), + [anon_sym_i128] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_str] = ACTIONS(1186), + [anon_sym_char] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_fn] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_impl] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_loop] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_mod] = ACTIONS(1186), + [anon_sym_pub] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_unsafe] = ACTIONS(1186), + [anon_sym_use] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1186), + [sym_integer_literal] = ACTIONS(1184), + [aux_sym_string_literal_token1] = ACTIONS(1184), + [sym_char_literal] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_self] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_crate] = ACTIONS(1186), + [sym_metavariable] = ACTIONS(1184), + [sym_raw_string_literal] = ACTIONS(1184), + [sym_float_literal] = ACTIONS(1184), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_macro_rules_BANG] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_loop] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_unsafe] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_macro_rules_BANG] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1188), + [sym_raw_string_literal] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1188), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_macro_rules_BANG] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u128] = ACTIONS(1194), + [anon_sym_i128] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_str] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_fn] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_impl] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_loop] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_mod] = ACTIONS(1194), + [anon_sym_pub] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_trait] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_unsafe] = ACTIONS(1194), + [anon_sym_use] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1194), + [sym_integer_literal] = ACTIONS(1192), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_self] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_crate] = ACTIONS(1194), + [sym_metavariable] = ACTIONS(1192), + [sym_raw_string_literal] = ACTIONS(1192), + [sym_float_literal] = ACTIONS(1192), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [280] = { [sym_attribute_item] = STATE(533), @@ -43590,36 +43823,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -43628,6174 +43861,6255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [281] = { - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1220), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [282] = { - [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_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), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1222), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [283] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [sym_float_literal] = ACTIONS(1226), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [284] = { - [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_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_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), + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1232), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [285] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1236), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [286] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [287] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [288] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [289] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [290] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [291] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [292] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [293] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [294] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [295] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [296] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [297] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [298] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [299] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [300] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [301] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [302] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [303] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [304] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [305] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [306] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [307] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [308] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [309] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [310] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [311] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [312] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [313] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [314] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [315] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [316] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [317] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [318] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [319] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [320] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [321] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [322] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [323] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [324] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [325] = { - [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_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [326] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [327] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [328] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [329] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [330] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [331] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [332] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [333] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [334] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [335] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [336] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [337] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [338] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [339] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [340] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [341] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [342] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [343] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [344] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [345] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [346] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [347] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [348] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [349] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [350] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [351] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [352] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [353] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [354] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [355] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [356] = { - [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), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1534), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), - [sym_block_comment] = ACTIONS(3), + [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), + [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_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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_macro_rules_BANG] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_impl] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_pub] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_trait] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1536), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [361] = { [sym_attribute_item] = STATE(533), @@ -49827,36 +50141,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -49865,1939 +50179,1965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [362] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_move] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym_raw_string_literal] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [363] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [364] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [365] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [366] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [367] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [368] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [369] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [370] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [371] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [372] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [373] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [374] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [375] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_macro_rules_BANG] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_type] = ACTIONS(1600), - [anon_sym_union] = ACTIONS(1600), - [anon_sym_unsafe] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1600), - [sym_crate] = ACTIONS(1600), - [sym_metavariable] = ACTIONS(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1598), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_macro_rules_BANG] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_macro_rules_BANG] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_macro_rules_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_impl] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_pub] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_trait] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1610), - [sym_raw_string_literal] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_yield] = ACTIONS(1610), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_identifier] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_macro_rules_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1616), - [anon_sym_i8] = ACTIONS(1616), - [anon_sym_u16] = ACTIONS(1616), - [anon_sym_i16] = ACTIONS(1616), - [anon_sym_u32] = ACTIONS(1616), - [anon_sym_i32] = ACTIONS(1616), - [anon_sym_u64] = ACTIONS(1616), - [anon_sym_i64] = ACTIONS(1616), - [anon_sym_u128] = ACTIONS(1616), - [anon_sym_i128] = ACTIONS(1616), - [anon_sym_isize] = ACTIONS(1616), - [anon_sym_usize] = ACTIONS(1616), - [anon_sym_f32] = ACTIONS(1616), - [anon_sym_f64] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_impl] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_pub] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_trait] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsafe] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_yield] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_crate] = ACTIONS(1616), - [sym_metavariable] = ACTIONS(1614), - [sym_raw_string_literal] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1618), - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_macro_rules_BANG] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_COLON_COLON] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_yield] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1618), - [aux_sym_string_literal_token1] = ACTIONS(1618), - [sym_char_literal] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_metavariable] = ACTIONS(1618), - [sym_raw_string_literal] = ACTIONS(1618), - [sym_float_literal] = ACTIONS(1618), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_yield] = ACTIONS(1618), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1622), - [sym_identifier] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_macro_rules_BANG] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1624), - [anon_sym_i8] = ACTIONS(1624), - [anon_sym_u16] = ACTIONS(1624), - [anon_sym_i16] = ACTIONS(1624), - [anon_sym_u32] = ACTIONS(1624), - [anon_sym_i32] = ACTIONS(1624), - [anon_sym_u64] = ACTIONS(1624), - [anon_sym_i64] = ACTIONS(1624), - [anon_sym_u128] = ACTIONS(1624), - [anon_sym_i128] = ACTIONS(1624), - [anon_sym_isize] = ACTIONS(1624), - [anon_sym_usize] = ACTIONS(1624), - [anon_sym_f32] = ACTIONS(1624), - [anon_sym_f64] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_str] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_SQUOTE] = ACTIONS(1624), - [anon_sym_async] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_enum] = ACTIONS(1624), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_impl] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_pub] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_struct] = ACTIONS(1624), - [anon_sym_trait] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_union] = ACTIONS(1624), - [anon_sym_unsafe] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_yield] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1622), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_yield] = ACTIONS(1622), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_identifier] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_macro_rules_BANG] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_impl] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_pub] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_trait] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [anon_sym_unsafe] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_COLON_COLON] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1626), - [aux_sym_string_literal_token1] = ACTIONS(1626), - [sym_char_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_crate] = ACTIONS(1628), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1626), - [sym_float_literal] = ACTIONS(1626), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_yield] = ACTIONS(1626), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1630), - [sym_identifier] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_macro_rules_BANG] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_u8] = ACTIONS(1632), - [anon_sym_i8] = ACTIONS(1632), - [anon_sym_u16] = ACTIONS(1632), - [anon_sym_i16] = ACTIONS(1632), - [anon_sym_u32] = ACTIONS(1632), - [anon_sym_i32] = ACTIONS(1632), - [anon_sym_u64] = ACTIONS(1632), - [anon_sym_i64] = ACTIONS(1632), - [anon_sym_u128] = ACTIONS(1632), - [anon_sym_i128] = ACTIONS(1632), - [anon_sym_isize] = ACTIONS(1632), - [anon_sym_usize] = ACTIONS(1632), - [anon_sym_f32] = ACTIONS(1632), - [anon_sym_f64] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_str] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1632), - [anon_sym_async] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1632), - [anon_sym_enum] = ACTIONS(1632), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_impl] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_pub] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_struct] = ACTIONS(1632), - [anon_sym_trait] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_union] = ACTIONS(1632), - [anon_sym_unsafe] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_POUND] = ACTIONS(1630), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_COLON_COLON] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_DOT_DOT] = ACTIONS(1630), - [anon_sym_DASH] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1630), - [anon_sym_yield] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1630), - [aux_sym_string_literal_token1] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1632), - [sym_super] = ACTIONS(1632), - [sym_crate] = ACTIONS(1632), - [sym_metavariable] = ACTIONS(1630), - [sym_raw_string_literal] = ACTIONS(1630), - [sym_float_literal] = ACTIONS(1630), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_macro_rules_BANG] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_u8] = ACTIONS(1636), - [anon_sym_i8] = ACTIONS(1636), - [anon_sym_u16] = ACTIONS(1636), - [anon_sym_i16] = ACTIONS(1636), - [anon_sym_u32] = ACTIONS(1636), - [anon_sym_i32] = ACTIONS(1636), - [anon_sym_u64] = ACTIONS(1636), - [anon_sym_i64] = ACTIONS(1636), - [anon_sym_u128] = ACTIONS(1636), - [anon_sym_i128] = ACTIONS(1636), - [anon_sym_isize] = ACTIONS(1636), - [anon_sym_usize] = ACTIONS(1636), - [anon_sym_f32] = ACTIONS(1636), - [anon_sym_f64] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_str] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_enum] = ACTIONS(1636), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_impl] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_pub] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_struct] = ACTIONS(1636), - [anon_sym_trait] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_union] = ACTIONS(1636), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1634), - [anon_sym_yield] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [aux_sym_string_literal_token1] = ACTIONS(1634), - [sym_char_literal] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1636), - [sym_super] = ACTIONS(1636), - [sym_crate] = ACTIONS(1636), - [sym_metavariable] = ACTIONS(1634), - [sym_raw_string_literal] = ACTIONS(1634), - [sym_float_literal] = ACTIONS(1634), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_macro_rules_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_u8] = ACTIONS(1640), - [anon_sym_i8] = ACTIONS(1640), - [anon_sym_u16] = ACTIONS(1640), - [anon_sym_i16] = ACTIONS(1640), - [anon_sym_u32] = ACTIONS(1640), - [anon_sym_i32] = ACTIONS(1640), - [anon_sym_u64] = ACTIONS(1640), - [anon_sym_i64] = ACTIONS(1640), - [anon_sym_u128] = ACTIONS(1640), - [anon_sym_i128] = ACTIONS(1640), - [anon_sym_isize] = ACTIONS(1640), - [anon_sym_usize] = ACTIONS(1640), - [anon_sym_f32] = ACTIONS(1640), - [anon_sym_f64] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_str] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1640), - [anon_sym_async] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_enum] = ACTIONS(1640), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_impl] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_pub] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_struct] = ACTIONS(1640), - [anon_sym_trait] = ACTIONS(1640), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_union] = ACTIONS(1640), - [anon_sym_unsafe] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_COLON_COLON] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1638), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1638), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1640), - [sym_super] = ACTIONS(1640), - [sym_crate] = ACTIONS(1640), - [sym_metavariable] = ACTIONS(1638), - [sym_raw_string_literal] = ACTIONS(1638), - [sym_float_literal] = ACTIONS(1638), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1638), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [387] = { [sym_attribute_item] = STATE(533), @@ -51829,36 +52169,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -51867,4634 +52207,4695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_macro_rules_BANG] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1646), - [anon_sym_i8] = ACTIONS(1646), - [anon_sym_u16] = ACTIONS(1646), - [anon_sym_i16] = ACTIONS(1646), - [anon_sym_u32] = ACTIONS(1646), - [anon_sym_i32] = ACTIONS(1646), - [anon_sym_u64] = ACTIONS(1646), - [anon_sym_i64] = ACTIONS(1646), - [anon_sym_u128] = ACTIONS(1646), - [anon_sym_i128] = ACTIONS(1646), - [anon_sym_isize] = ACTIONS(1646), - [anon_sym_usize] = ACTIONS(1646), - [anon_sym_f32] = ACTIONS(1646), - [anon_sym_f64] = ACTIONS(1646), - [anon_sym_bool] = ACTIONS(1646), - [anon_sym_str] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_impl] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_pub] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_trait] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsafe] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_yield] = ACTIONS(1646), - [anon_sym_move] = ACTIONS(1646), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1646), - [sym_super] = ACTIONS(1646), - [sym_crate] = ACTIONS(1646), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1642), + [sym_identifier] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_macro_rules_BANG] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_break] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(1644), + [anon_sym_default] = ACTIONS(1644), + [anon_sym_enum] = ACTIONS(1644), + [anon_sym_fn] = ACTIONS(1644), + [anon_sym_for] = ACTIONS(1644), + [anon_sym_if] = ACTIONS(1644), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_let] = ACTIONS(1644), + [anon_sym_loop] = ACTIONS(1644), + [anon_sym_match] = ACTIONS(1644), + [anon_sym_mod] = ACTIONS(1644), + [anon_sym_pub] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(1644), + [anon_sym_struct] = ACTIONS(1644), + [anon_sym_trait] = ACTIONS(1644), + [anon_sym_type] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1644), + [anon_sym_unsafe] = ACTIONS(1644), + [anon_sym_use] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_extern] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_COLON_COLON] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_DOT_DOT] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_yield] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1644), + [sym_integer_literal] = ACTIONS(1642), + [aux_sym_string_literal_token1] = ACTIONS(1642), + [sym_char_literal] = ACTIONS(1642), + [anon_sym_true] = ACTIONS(1644), + [anon_sym_false] = ACTIONS(1644), + [sym_self] = ACTIONS(1644), + [sym_super] = ACTIONS(1644), + [sym_crate] = ACTIONS(1644), + [sym_metavariable] = ACTIONS(1642), + [sym_raw_string_literal] = ACTIONS(1642), + [sym_float_literal] = ACTIONS(1642), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [389] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [390] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [391] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [392] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [393] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [394] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [395] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [396] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [397] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [398] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [399] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [400] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [401] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [402] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [403] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [404] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [405] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [406] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [407] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [408] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [409] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [410] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [411] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [412] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [413] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [414] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [415] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [416] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [417] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [418] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [419] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [420] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [421] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [422] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [423] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [424] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [425] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [426] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [427] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [428] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [429] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [430] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [431] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [432] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [433] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [434] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [435] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [436] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [437] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [438] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [439] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [440] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [441] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [442] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [443] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [444] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [445] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [446] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [447] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [448] = { [ts_builtin_sym_end] = ACTIONS(554), @@ -56564,7 +56965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(554), [anon_sym_true] = ACTIONS(556), [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(556), [sym_super] = ACTIONS(556), [sym_crate] = ACTIONS(556), @@ -56572,237 +56972,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(554), [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [449] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [450] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [451] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [452] = { [ts_builtin_sym_end] = ACTIONS(540), @@ -56872,7 +57277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(540), [anon_sym_true] = ACTIONS(542), [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(542), [sym_super] = ACTIONS(542), [sym_crate] = ACTIONS(542), @@ -56880,314 +57284,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(540), [sym_float_literal] = ACTIONS(540), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [453] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [454] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [455] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [456] = { - [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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [457] = { [ts_builtin_sym_end] = ACTIONS(530), @@ -57257,7 +57667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(530), [anon_sym_true] = ACTIONS(532), [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(532), [sym_super] = ACTIONS(532), [sym_crate] = ACTIONS(532), @@ -57265,1788 +57674,1896 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(530), [sym_float_literal] = ACTIONS(530), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_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), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_macro_rules_BANG] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_u8] = ACTIONS(1958), - [anon_sym_i8] = ACTIONS(1958), - [anon_sym_u16] = ACTIONS(1958), - [anon_sym_i16] = ACTIONS(1958), - [anon_sym_u32] = ACTIONS(1958), - [anon_sym_i32] = ACTIONS(1958), - [anon_sym_u64] = ACTIONS(1958), - [anon_sym_i64] = ACTIONS(1958), - [anon_sym_u128] = ACTIONS(1958), - [anon_sym_i128] = ACTIONS(1958), - [anon_sym_isize] = ACTIONS(1958), - [anon_sym_usize] = ACTIONS(1958), - [anon_sym_f32] = ACTIONS(1958), - [anon_sym_f64] = ACTIONS(1958), - [anon_sym_bool] = ACTIONS(1958), - [anon_sym_str] = ACTIONS(1958), - [anon_sym_char] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_fn] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_impl] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1958), - [anon_sym_loop] = ACTIONS(1958), - [anon_sym_match] = ACTIONS(1958), - [anon_sym_mod] = ACTIONS(1958), - [anon_sym_pub] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_trait] = ACTIONS(1958), - [anon_sym_type] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_unsafe] = ACTIONS(1958), - [anon_sym_use] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_COLON_COLON] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1958), - [anon_sym_move] = ACTIONS(1958), - [sym_integer_literal] = ACTIONS(1956), - [aux_sym_string_literal_token1] = ACTIONS(1956), - [sym_char_literal] = ACTIONS(1956), - [anon_sym_true] = ACTIONS(1958), - [anon_sym_false] = ACTIONS(1958), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_crate] = ACTIONS(1958), - [sym_metavariable] = ACTIONS(1956), - [sym_raw_string_literal] = ACTIONS(1956), - [sym_float_literal] = ACTIONS(1956), - [sym_block_comment] = ACTIONS(3), + [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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_macro_rules_BANG] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_u8] = ACTIONS(1962), - [anon_sym_i8] = ACTIONS(1962), - [anon_sym_u16] = ACTIONS(1962), - [anon_sym_i16] = ACTIONS(1962), - [anon_sym_u32] = ACTIONS(1962), - [anon_sym_i32] = ACTIONS(1962), - [anon_sym_u64] = ACTIONS(1962), - [anon_sym_i64] = ACTIONS(1962), - [anon_sym_u128] = ACTIONS(1962), - [anon_sym_i128] = ACTIONS(1962), - [anon_sym_isize] = ACTIONS(1962), - [anon_sym_usize] = ACTIONS(1962), - [anon_sym_f32] = ACTIONS(1962), - [anon_sym_f64] = ACTIONS(1962), - [anon_sym_bool] = ACTIONS(1962), - [anon_sym_str] = ACTIONS(1962), - [anon_sym_char] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_async] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_fn] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_impl] = ACTIONS(1962), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_loop] = ACTIONS(1962), - [anon_sym_match] = ACTIONS(1962), - [anon_sym_mod] = ACTIONS(1962), - [anon_sym_pub] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_trait] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_use] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1962), - [anon_sym_move] = ACTIONS(1962), - [sym_integer_literal] = ACTIONS(1960), - [aux_sym_string_literal_token1] = ACTIONS(1960), - [sym_char_literal] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_crate] = ACTIONS(1962), - [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1960), - [sym_float_literal] = ACTIONS(1960), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_macro_rules_BANG] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_u8] = ACTIONS(1960), + [anon_sym_i8] = ACTIONS(1960), + [anon_sym_u16] = ACTIONS(1960), + [anon_sym_i16] = ACTIONS(1960), + [anon_sym_u32] = ACTIONS(1960), + [anon_sym_i32] = ACTIONS(1960), + [anon_sym_u64] = ACTIONS(1960), + [anon_sym_i64] = ACTIONS(1960), + [anon_sym_u128] = ACTIONS(1960), + [anon_sym_i128] = ACTIONS(1960), + [anon_sym_isize] = ACTIONS(1960), + [anon_sym_usize] = ACTIONS(1960), + [anon_sym_f32] = ACTIONS(1960), + [anon_sym_f64] = ACTIONS(1960), + [anon_sym_bool] = ACTIONS(1960), + [anon_sym_str] = ACTIONS(1960), + [anon_sym_char] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_fn] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_impl] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mod] = ACTIONS(1960), + [anon_sym_pub] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_trait] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_unsafe] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_COLON_COLON] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_move] = ACTIONS(1960), + [sym_integer_literal] = ACTIONS(1958), + [aux_sym_string_literal_token1] = ACTIONS(1958), + [sym_char_literal] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_crate] = ACTIONS(1960), + [sym_metavariable] = ACTIONS(1958), + [sym_raw_string_literal] = ACTIONS(1958), + [sym_float_literal] = ACTIONS(1958), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_macro_rules_BANG] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_u8] = ACTIONS(1966), - [anon_sym_i8] = ACTIONS(1966), - [anon_sym_u16] = ACTIONS(1966), - [anon_sym_i16] = ACTIONS(1966), - [anon_sym_u32] = ACTIONS(1966), - [anon_sym_i32] = ACTIONS(1966), - [anon_sym_u64] = ACTIONS(1966), - [anon_sym_i64] = ACTIONS(1966), - [anon_sym_u128] = ACTIONS(1966), - [anon_sym_i128] = ACTIONS(1966), - [anon_sym_isize] = ACTIONS(1966), - [anon_sym_usize] = ACTIONS(1966), - [anon_sym_f32] = ACTIONS(1966), - [anon_sym_f64] = ACTIONS(1966), - [anon_sym_bool] = ACTIONS(1966), - [anon_sym_str] = ACTIONS(1966), - [anon_sym_char] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_fn] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_impl] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_mod] = ACTIONS(1966), - [anon_sym_pub] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_trait] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_unsafe] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1964), - [aux_sym_string_literal_token1] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1964), - [sym_raw_string_literal] = ACTIONS(1964), - [sym_float_literal] = ACTIONS(1964), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_macro_rules_BANG] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_u8] = ACTIONS(1964), + [anon_sym_i8] = ACTIONS(1964), + [anon_sym_u16] = ACTIONS(1964), + [anon_sym_i16] = ACTIONS(1964), + [anon_sym_u32] = ACTIONS(1964), + [anon_sym_i32] = ACTIONS(1964), + [anon_sym_u64] = ACTIONS(1964), + [anon_sym_i64] = ACTIONS(1964), + [anon_sym_u128] = ACTIONS(1964), + [anon_sym_i128] = ACTIONS(1964), + [anon_sym_isize] = ACTIONS(1964), + [anon_sym_usize] = ACTIONS(1964), + [anon_sym_f32] = ACTIONS(1964), + [anon_sym_f64] = ACTIONS(1964), + [anon_sym_bool] = ACTIONS(1964), + [anon_sym_str] = ACTIONS(1964), + [anon_sym_char] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_impl] = ACTIONS(1964), + [anon_sym_let] = ACTIONS(1964), + [anon_sym_loop] = ACTIONS(1964), + [anon_sym_match] = ACTIONS(1964), + [anon_sym_mod] = ACTIONS(1964), + [anon_sym_pub] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_trait] = ACTIONS(1964), + [anon_sym_type] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_unsafe] = ACTIONS(1964), + [anon_sym_use] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_yield] = ACTIONS(1964), + [anon_sym_move] = ACTIONS(1964), + [sym_integer_literal] = ACTIONS(1962), + [aux_sym_string_literal_token1] = ACTIONS(1962), + [sym_char_literal] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1964), + [sym_metavariable] = ACTIONS(1962), + [sym_raw_string_literal] = ACTIONS(1962), + [sym_float_literal] = ACTIONS(1962), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_macro_rules_BANG] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_u8] = ACTIONS(1970), - [anon_sym_i8] = ACTIONS(1970), - [anon_sym_u16] = ACTIONS(1970), - [anon_sym_i16] = ACTIONS(1970), - [anon_sym_u32] = ACTIONS(1970), - [anon_sym_i32] = ACTIONS(1970), - [anon_sym_u64] = ACTIONS(1970), - [anon_sym_i64] = ACTIONS(1970), - [anon_sym_u128] = ACTIONS(1970), - [anon_sym_i128] = ACTIONS(1970), - [anon_sym_isize] = ACTIONS(1970), - [anon_sym_usize] = ACTIONS(1970), - [anon_sym_f32] = ACTIONS(1970), - [anon_sym_f64] = ACTIONS(1970), - [anon_sym_bool] = ACTIONS(1970), - [anon_sym_str] = ACTIONS(1970), - [anon_sym_char] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_fn] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_impl] = ACTIONS(1970), - [anon_sym_let] = ACTIONS(1970), - [anon_sym_loop] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [anon_sym_mod] = ACTIONS(1970), - [anon_sym_pub] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_trait] = ACTIONS(1970), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_unsafe] = ACTIONS(1970), - [anon_sym_use] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1970), - [anon_sym_move] = ACTIONS(1970), - [sym_integer_literal] = ACTIONS(1968), - [aux_sym_string_literal_token1] = ACTIONS(1968), - [sym_char_literal] = ACTIONS(1968), - [anon_sym_true] = ACTIONS(1970), - [anon_sym_false] = ACTIONS(1970), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_crate] = ACTIONS(1970), - [sym_metavariable] = ACTIONS(1968), - [sym_raw_string_literal] = ACTIONS(1968), - [sym_float_literal] = ACTIONS(1968), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_macro_rules_BANG] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_async] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_mod] = ACTIONS(1968), + [anon_sym_pub] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_trait] = ACTIONS(1968), + [anon_sym_type] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_unsafe] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1968), + [anon_sym_move] = ACTIONS(1968), + [sym_integer_literal] = ACTIONS(1966), + [aux_sym_string_literal_token1] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_crate] = ACTIONS(1968), + [sym_metavariable] = ACTIONS(1966), + [sym_raw_string_literal] = ACTIONS(1966), + [sym_float_literal] = ACTIONS(1966), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_macro_rules_BANG] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_u8] = ACTIONS(1974), - [anon_sym_i8] = ACTIONS(1974), - [anon_sym_u16] = ACTIONS(1974), - [anon_sym_i16] = ACTIONS(1974), - [anon_sym_u32] = ACTIONS(1974), - [anon_sym_i32] = ACTIONS(1974), - [anon_sym_u64] = ACTIONS(1974), - [anon_sym_i64] = ACTIONS(1974), - [anon_sym_u128] = ACTIONS(1974), - [anon_sym_i128] = ACTIONS(1974), - [anon_sym_isize] = ACTIONS(1974), - [anon_sym_usize] = ACTIONS(1974), - [anon_sym_f32] = ACTIONS(1974), - [anon_sym_f64] = ACTIONS(1974), - [anon_sym_bool] = ACTIONS(1974), - [anon_sym_str] = ACTIONS(1974), - [anon_sym_char] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_impl] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_loop] = ACTIONS(1974), - [anon_sym_match] = ACTIONS(1974), - [anon_sym_mod] = ACTIONS(1974), - [anon_sym_pub] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_trait] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_unsafe] = ACTIONS(1974), - [anon_sym_use] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_move] = ACTIONS(1974), - [sym_integer_literal] = ACTIONS(1972), - [aux_sym_string_literal_token1] = ACTIONS(1972), - [sym_char_literal] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_crate] = ACTIONS(1974), - [sym_metavariable] = ACTIONS(1972), - [sym_raw_string_literal] = ACTIONS(1972), - [sym_float_literal] = ACTIONS(1972), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_macro_rules_BANG] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1972), + [anon_sym_move] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1970), + [aux_sym_string_literal_token1] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1970), + [sym_raw_string_literal] = ACTIONS(1970), + [sym_float_literal] = ACTIONS(1970), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1976), - [sym_identifier] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_macro_rules_BANG] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_u8] = ACTIONS(1978), - [anon_sym_i8] = ACTIONS(1978), - [anon_sym_u16] = ACTIONS(1978), - [anon_sym_i16] = ACTIONS(1978), - [anon_sym_u32] = ACTIONS(1978), - [anon_sym_i32] = ACTIONS(1978), - [anon_sym_u64] = ACTIONS(1978), - [anon_sym_i64] = ACTIONS(1978), - [anon_sym_u128] = ACTIONS(1978), - [anon_sym_i128] = ACTIONS(1978), - [anon_sym_isize] = ACTIONS(1978), - [anon_sym_usize] = ACTIONS(1978), - [anon_sym_f32] = ACTIONS(1978), - [anon_sym_f64] = ACTIONS(1978), - [anon_sym_bool] = ACTIONS(1978), - [anon_sym_str] = ACTIONS(1978), - [anon_sym_char] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_async] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_fn] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_impl] = ACTIONS(1978), - [anon_sym_let] = ACTIONS(1978), - [anon_sym_loop] = ACTIONS(1978), - [anon_sym_match] = ACTIONS(1978), - [anon_sym_mod] = ACTIONS(1978), - [anon_sym_pub] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_trait] = ACTIONS(1978), - [anon_sym_type] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_unsafe] = ACTIONS(1978), - [anon_sym_use] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_COLON_COLON] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1978), - [anon_sym_move] = ACTIONS(1978), - [sym_integer_literal] = ACTIONS(1976), - [aux_sym_string_literal_token1] = ACTIONS(1976), - [sym_char_literal] = ACTIONS(1976), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_crate] = ACTIONS(1978), - [sym_metavariable] = ACTIONS(1976), - [sym_raw_string_literal] = ACTIONS(1976), - [sym_float_literal] = ACTIONS(1976), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_macro_rules_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_move] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1974), + [aux_sym_string_literal_token1] = ACTIONS(1974), + [sym_char_literal] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), + [sym_metavariable] = ACTIONS(1974), + [sym_raw_string_literal] = ACTIONS(1974), + [sym_float_literal] = ACTIONS(1974), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [sym_identifier] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_macro_rules_BANG] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_u8] = ACTIONS(1982), - [anon_sym_i8] = ACTIONS(1982), - [anon_sym_u16] = ACTIONS(1982), - [anon_sym_i16] = ACTIONS(1982), - [anon_sym_u32] = ACTIONS(1982), - [anon_sym_i32] = ACTIONS(1982), - [anon_sym_u64] = ACTIONS(1982), - [anon_sym_i64] = ACTIONS(1982), - [anon_sym_u128] = ACTIONS(1982), - [anon_sym_i128] = ACTIONS(1982), - [anon_sym_isize] = ACTIONS(1982), - [anon_sym_usize] = ACTIONS(1982), - [anon_sym_f32] = ACTIONS(1982), - [anon_sym_f64] = ACTIONS(1982), - [anon_sym_bool] = ACTIONS(1982), - [anon_sym_str] = ACTIONS(1982), - [anon_sym_char] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_fn] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_impl] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_loop] = ACTIONS(1982), - [anon_sym_match] = ACTIONS(1982), - [anon_sym_mod] = ACTIONS(1982), - [anon_sym_pub] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_trait] = ACTIONS(1982), - [anon_sym_type] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_unsafe] = ACTIONS(1982), - [anon_sym_use] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_DOT_DOT] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1982), - [anon_sym_move] = ACTIONS(1982), - [sym_integer_literal] = ACTIONS(1980), - [aux_sym_string_literal_token1] = ACTIONS(1980), - [sym_char_literal] = ACTIONS(1980), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1982), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_crate] = ACTIONS(1982), - [sym_metavariable] = ACTIONS(1980), - [sym_raw_string_literal] = ACTIONS(1980), - [sym_float_literal] = ACTIONS(1980), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_macro_rules_BANG] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_u8] = ACTIONS(1980), + [anon_sym_i8] = ACTIONS(1980), + [anon_sym_u16] = ACTIONS(1980), + [anon_sym_i16] = ACTIONS(1980), + [anon_sym_u32] = ACTIONS(1980), + [anon_sym_i32] = ACTIONS(1980), + [anon_sym_u64] = ACTIONS(1980), + [anon_sym_i64] = ACTIONS(1980), + [anon_sym_u128] = ACTIONS(1980), + [anon_sym_i128] = ACTIONS(1980), + [anon_sym_isize] = ACTIONS(1980), + [anon_sym_usize] = ACTIONS(1980), + [anon_sym_f32] = ACTIONS(1980), + [anon_sym_f64] = ACTIONS(1980), + [anon_sym_bool] = ACTIONS(1980), + [anon_sym_str] = ACTIONS(1980), + [anon_sym_char] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_fn] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_impl] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_loop] = ACTIONS(1980), + [anon_sym_match] = ACTIONS(1980), + [anon_sym_mod] = ACTIONS(1980), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_move] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1978), + [aux_sym_string_literal_token1] = ACTIONS(1978), + [sym_char_literal] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1980), + [anon_sym_false] = ACTIONS(1980), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1978), + [sym_raw_string_literal] = ACTIONS(1978), + [sym_float_literal] = ACTIONS(1978), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1984), - [sym_identifier] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_macro_rules_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_u8] = ACTIONS(1986), - [anon_sym_i8] = ACTIONS(1986), - [anon_sym_u16] = ACTIONS(1986), - [anon_sym_i16] = ACTIONS(1986), - [anon_sym_u32] = ACTIONS(1986), - [anon_sym_i32] = ACTIONS(1986), - [anon_sym_u64] = ACTIONS(1986), - [anon_sym_i64] = ACTIONS(1986), - [anon_sym_u128] = ACTIONS(1986), - [anon_sym_i128] = ACTIONS(1986), - [anon_sym_isize] = ACTIONS(1986), - [anon_sym_usize] = ACTIONS(1986), - [anon_sym_f32] = ACTIONS(1986), - [anon_sym_f64] = ACTIONS(1986), - [anon_sym_bool] = ACTIONS(1986), - [anon_sym_str] = ACTIONS(1986), - [anon_sym_char] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_fn] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_impl] = ACTIONS(1986), - [anon_sym_let] = ACTIONS(1986), - [anon_sym_loop] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1986), - [anon_sym_mod] = ACTIONS(1986), - [anon_sym_pub] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_trait] = ACTIONS(1986), - [anon_sym_type] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsafe] = ACTIONS(1986), - [anon_sym_use] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_COLON_COLON] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1986), - [anon_sym_move] = ACTIONS(1986), - [sym_integer_literal] = ACTIONS(1984), - [aux_sym_string_literal_token1] = ACTIONS(1984), - [sym_char_literal] = ACTIONS(1984), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_crate] = ACTIONS(1986), - [sym_metavariable] = ACTIONS(1984), - [sym_raw_string_literal] = ACTIONS(1984), - [sym_float_literal] = ACTIONS(1984), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_macro_rules_BANG] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_u8] = ACTIONS(1984), + [anon_sym_i8] = ACTIONS(1984), + [anon_sym_u16] = ACTIONS(1984), + [anon_sym_i16] = ACTIONS(1984), + [anon_sym_u32] = ACTIONS(1984), + [anon_sym_i32] = ACTIONS(1984), + [anon_sym_u64] = ACTIONS(1984), + [anon_sym_i64] = ACTIONS(1984), + [anon_sym_u128] = ACTIONS(1984), + [anon_sym_i128] = ACTIONS(1984), + [anon_sym_isize] = ACTIONS(1984), + [anon_sym_usize] = ACTIONS(1984), + [anon_sym_f32] = ACTIONS(1984), + [anon_sym_f64] = ACTIONS(1984), + [anon_sym_bool] = ACTIONS(1984), + [anon_sym_str] = ACTIONS(1984), + [anon_sym_char] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_fn] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_impl] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_mod] = ACTIONS(1984), + [anon_sym_pub] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_trait] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_unsafe] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1984), + [anon_sym_move] = ACTIONS(1984), + [sym_integer_literal] = ACTIONS(1982), + [aux_sym_string_literal_token1] = ACTIONS(1982), + [sym_char_literal] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_crate] = ACTIONS(1984), + [sym_metavariable] = ACTIONS(1982), + [sym_raw_string_literal] = ACTIONS(1982), + [sym_float_literal] = ACTIONS(1982), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_macro_rules_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_u8] = ACTIONS(1990), - [anon_sym_i8] = ACTIONS(1990), - [anon_sym_u16] = ACTIONS(1990), - [anon_sym_i16] = ACTIONS(1990), - [anon_sym_u32] = ACTIONS(1990), - [anon_sym_i32] = ACTIONS(1990), - [anon_sym_u64] = ACTIONS(1990), - [anon_sym_i64] = ACTIONS(1990), - [anon_sym_u128] = ACTIONS(1990), - [anon_sym_i128] = ACTIONS(1990), - [anon_sym_isize] = ACTIONS(1990), - [anon_sym_usize] = ACTIONS(1990), - [anon_sym_f32] = ACTIONS(1990), - [anon_sym_f64] = ACTIONS(1990), - [anon_sym_bool] = ACTIONS(1990), - [anon_sym_str] = ACTIONS(1990), - [anon_sym_char] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_fn] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_impl] = ACTIONS(1990), - [anon_sym_let] = ACTIONS(1990), - [anon_sym_loop] = ACTIONS(1990), - [anon_sym_match] = ACTIONS(1990), - [anon_sym_mod] = ACTIONS(1990), - [anon_sym_pub] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_trait] = ACTIONS(1990), - [anon_sym_type] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsafe] = ACTIONS(1990), - [anon_sym_use] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1990), - [anon_sym_move] = ACTIONS(1990), - [sym_integer_literal] = ACTIONS(1988), - [aux_sym_string_literal_token1] = ACTIONS(1988), - [sym_char_literal] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_crate] = ACTIONS(1990), - [sym_metavariable] = ACTIONS(1988), - [sym_raw_string_literal] = ACTIONS(1988), - [sym_float_literal] = ACTIONS(1988), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_macro_rules_BANG] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_u8] = ACTIONS(1988), + [anon_sym_i8] = ACTIONS(1988), + [anon_sym_u16] = ACTIONS(1988), + [anon_sym_i16] = ACTIONS(1988), + [anon_sym_u32] = ACTIONS(1988), + [anon_sym_i32] = ACTIONS(1988), + [anon_sym_u64] = ACTIONS(1988), + [anon_sym_i64] = ACTIONS(1988), + [anon_sym_u128] = ACTIONS(1988), + [anon_sym_i128] = ACTIONS(1988), + [anon_sym_isize] = ACTIONS(1988), + [anon_sym_usize] = ACTIONS(1988), + [anon_sym_f32] = ACTIONS(1988), + [anon_sym_f64] = ACTIONS(1988), + [anon_sym_bool] = ACTIONS(1988), + [anon_sym_str] = ACTIONS(1988), + [anon_sym_char] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_fn] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_mod] = ACTIONS(1988), + [anon_sym_pub] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_trait] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_unsafe] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_move] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(1986), + [aux_sym_string_literal_token1] = ACTIONS(1986), + [sym_char_literal] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_crate] = ACTIONS(1988), + [sym_metavariable] = ACTIONS(1986), + [sym_raw_string_literal] = ACTIONS(1986), + [sym_float_literal] = ACTIONS(1986), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_identifier] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_macro_rules_BANG] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_u8] = ACTIONS(1994), - [anon_sym_i8] = ACTIONS(1994), - [anon_sym_u16] = ACTIONS(1994), - [anon_sym_i16] = ACTIONS(1994), - [anon_sym_u32] = ACTIONS(1994), - [anon_sym_i32] = ACTIONS(1994), - [anon_sym_u64] = ACTIONS(1994), - [anon_sym_i64] = ACTIONS(1994), - [anon_sym_u128] = ACTIONS(1994), - [anon_sym_i128] = ACTIONS(1994), - [anon_sym_isize] = ACTIONS(1994), - [anon_sym_usize] = ACTIONS(1994), - [anon_sym_f32] = ACTIONS(1994), - [anon_sym_f64] = ACTIONS(1994), - [anon_sym_bool] = ACTIONS(1994), - [anon_sym_str] = ACTIONS(1994), - [anon_sym_char] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_fn] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_impl] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_loop] = ACTIONS(1994), - [anon_sym_match] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1994), - [anon_sym_pub] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_trait] = ACTIONS(1994), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsafe] = ACTIONS(1994), - [anon_sym_use] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_COLON_COLON] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_DOT_DOT] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1994), - [anon_sym_move] = ACTIONS(1994), - [sym_integer_literal] = ACTIONS(1992), - [aux_sym_string_literal_token1] = ACTIONS(1992), - [sym_char_literal] = ACTIONS(1992), - [anon_sym_true] = ACTIONS(1994), - [anon_sym_false] = ACTIONS(1994), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_crate] = ACTIONS(1994), - [sym_metavariable] = ACTIONS(1992), - [sym_raw_string_literal] = ACTIONS(1992), - [sym_float_literal] = ACTIONS(1992), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_macro_rules_BANG] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_u8] = ACTIONS(1992), + [anon_sym_i8] = ACTIONS(1992), + [anon_sym_u16] = ACTIONS(1992), + [anon_sym_i16] = ACTIONS(1992), + [anon_sym_u32] = ACTIONS(1992), + [anon_sym_i32] = ACTIONS(1992), + [anon_sym_u64] = ACTIONS(1992), + [anon_sym_i64] = ACTIONS(1992), + [anon_sym_u128] = ACTIONS(1992), + [anon_sym_i128] = ACTIONS(1992), + [anon_sym_isize] = ACTIONS(1992), + [anon_sym_usize] = ACTIONS(1992), + [anon_sym_f32] = ACTIONS(1992), + [anon_sym_f64] = ACTIONS(1992), + [anon_sym_bool] = ACTIONS(1992), + [anon_sym_str] = ACTIONS(1992), + [anon_sym_char] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_impl] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_mod] = ACTIONS(1992), + [anon_sym_pub] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_trait] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_unsafe] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_move] = ACTIONS(1992), + [sym_integer_literal] = ACTIONS(1990), + [aux_sym_string_literal_token1] = ACTIONS(1990), + [sym_char_literal] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_crate] = ACTIONS(1992), + [sym_metavariable] = ACTIONS(1990), + [sym_raw_string_literal] = ACTIONS(1990), + [sym_float_literal] = ACTIONS(1990), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_macro_rules_BANG] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_u8] = ACTIONS(1998), - [anon_sym_i8] = ACTIONS(1998), - [anon_sym_u16] = ACTIONS(1998), - [anon_sym_i16] = ACTIONS(1998), - [anon_sym_u32] = ACTIONS(1998), - [anon_sym_i32] = ACTIONS(1998), - [anon_sym_u64] = ACTIONS(1998), - [anon_sym_i64] = ACTIONS(1998), - [anon_sym_u128] = ACTIONS(1998), - [anon_sym_i128] = ACTIONS(1998), - [anon_sym_isize] = ACTIONS(1998), - [anon_sym_usize] = ACTIONS(1998), - [anon_sym_f32] = ACTIONS(1998), - [anon_sym_f64] = ACTIONS(1998), - [anon_sym_bool] = ACTIONS(1998), - [anon_sym_str] = ACTIONS(1998), - [anon_sym_char] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(1998), - [anon_sym_async] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_fn] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_impl] = ACTIONS(1998), - [anon_sym_let] = ACTIONS(1998), - [anon_sym_loop] = ACTIONS(1998), - [anon_sym_match] = ACTIONS(1998), - [anon_sym_mod] = ACTIONS(1998), - [anon_sym_pub] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_trait] = ACTIONS(1998), - [anon_sym_type] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_unsafe] = ACTIONS(1998), - [anon_sym_use] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1998), - [anon_sym_move] = ACTIONS(1998), - [sym_integer_literal] = ACTIONS(1996), - [aux_sym_string_literal_token1] = ACTIONS(1996), - [sym_char_literal] = ACTIONS(1996), - [anon_sym_true] = ACTIONS(1998), - [anon_sym_false] = ACTIONS(1998), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_crate] = ACTIONS(1998), - [sym_metavariable] = ACTIONS(1996), - [sym_raw_string_literal] = ACTIONS(1996), - [sym_float_literal] = ACTIONS(1996), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_macro_rules_BANG] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_u8] = ACTIONS(1996), + [anon_sym_i8] = ACTIONS(1996), + [anon_sym_u16] = ACTIONS(1996), + [anon_sym_i16] = ACTIONS(1996), + [anon_sym_u32] = ACTIONS(1996), + [anon_sym_i32] = ACTIONS(1996), + [anon_sym_u64] = ACTIONS(1996), + [anon_sym_i64] = ACTIONS(1996), + [anon_sym_u128] = ACTIONS(1996), + [anon_sym_i128] = ACTIONS(1996), + [anon_sym_isize] = ACTIONS(1996), + [anon_sym_usize] = ACTIONS(1996), + [anon_sym_f32] = ACTIONS(1996), + [anon_sym_f64] = ACTIONS(1996), + [anon_sym_bool] = ACTIONS(1996), + [anon_sym_str] = ACTIONS(1996), + [anon_sym_char] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_fn] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_impl] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_mod] = ACTIONS(1996), + [anon_sym_pub] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_trait] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_unsafe] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_move] = ACTIONS(1996), + [sym_integer_literal] = ACTIONS(1994), + [aux_sym_string_literal_token1] = ACTIONS(1994), + [sym_char_literal] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_crate] = ACTIONS(1996), + [sym_metavariable] = ACTIONS(1994), + [sym_raw_string_literal] = ACTIONS(1994), + [sym_float_literal] = ACTIONS(1994), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_macro_rules_BANG] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2000), - [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), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_async] = 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_while] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2000), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_crate] = ACTIONS(2002), - [sym_metavariable] = ACTIONS(2000), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_macro_rules_BANG] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_move] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1998), + [aux_sym_string_literal_token1] = ACTIONS(1998), + [sym_char_literal] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(1998), + [sym_raw_string_literal] = ACTIONS(1998), + [sym_float_literal] = ACTIONS(1998), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(2004), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_macro_rules_BANG] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2004), + [anon_sym_i8] = ACTIONS(2004), + [anon_sym_u16] = ACTIONS(2004), + [anon_sym_i16] = ACTIONS(2004), + [anon_sym_u32] = ACTIONS(2004), + [anon_sym_i32] = ACTIONS(2004), + [anon_sym_u64] = ACTIONS(2004), + [anon_sym_i64] = ACTIONS(2004), + [anon_sym_u128] = ACTIONS(2004), + [anon_sym_i128] = ACTIONS(2004), + [anon_sym_isize] = ACTIONS(2004), + [anon_sym_usize] = ACTIONS(2004), + [anon_sym_f32] = ACTIONS(2004), + [anon_sym_f64] = ACTIONS(2004), + [anon_sym_bool] = ACTIONS(2004), + [anon_sym_str] = ACTIONS(2004), + [anon_sym_char] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_fn] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_impl] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_mod] = ACTIONS(2004), + [anon_sym_pub] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_trait] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsafe] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_move] = ACTIONS(2004), + [sym_integer_literal] = ACTIONS(2002), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_crate] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2002), + [sym_raw_string_literal] = ACTIONS(2002), + [sym_float_literal] = ACTIONS(2002), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [482] = { + [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(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(496), [sym_identifier] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_macro_rules_BANG] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), [anon_sym_u8] = ACTIONS(2006), [anon_sym_i8] = ACTIONS(2006), [anon_sym_u16] = ACTIONS(2006), @@ -59064,8 +59581,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2006), [anon_sym_str] = ACTIONS(2006), [anon_sym_char] = ACTIONS(2006), + [aux_sym__non_special_token_token1] = ACTIONS(2006), [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_as] = ACTIONS(2006), [anon_sym_async] = ACTIONS(2006), + [anon_sym_await] = ACTIONS(2006), [anon_sym_break] = ACTIONS(2006), [anon_sym_const] = ACTIONS(2006), [anon_sym_continue] = ACTIONS(2006), @@ -59088,107 +59608,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2006), [anon_sym_unsafe] = ACTIONS(2006), [anon_sym_use] = ACTIONS(2006), + [anon_sym_where] = ACTIONS(2006), [anon_sym_while] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_COLON_COLON] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(2004), - [aux_sym_string_literal_token1] = ACTIONS(2004), - [sym_char_literal] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), [sym_self] = ACTIONS(2006), [sym_super] = ACTIONS(2006), [sym_crate] = ACTIONS(2006), - [sym_metavariable] = ACTIONS(2004), - [sym_raw_string_literal] = ACTIONS(2004), - [sym_float_literal] = ACTIONS(2004), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [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(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [aux_sym__non_special_token_token1] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_as] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_await] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_where] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [sym_mutable_specifier] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [483] = { [sym__token_pattern] = STATE(484), @@ -59199,72 +59635,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [aux_sym__non_special_token_token1] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_await] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_where] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [sym_mutable_specifier] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [484] = { [sym__token_pattern] = STATE(251), @@ -59275,72 +59712,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [485] = { [sym__token_pattern] = STATE(251), @@ -59351,72 +59789,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [486] = { [sym__token_pattern] = STATE(251), @@ -59427,72 +59866,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [487] = { [sym__token_pattern] = STATE(251), @@ -59503,72 +59943,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [488] = { [sym_attribute_item] = STATE(533), @@ -59600,35 +60041,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59637,14 +60078,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [489] = { [sym_attribute_item] = STATE(533), @@ -59676,35 +60118,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59713,14 +60155,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [490] = { [sym_token_tree] = STATE(490), @@ -59729,74 +60172,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2038), - [anon_sym_i8] = ACTIONS(2038), - [anon_sym_u16] = ACTIONS(2038), - [anon_sym_i16] = ACTIONS(2038), - [anon_sym_u32] = ACTIONS(2038), - [anon_sym_i32] = ACTIONS(2038), - [anon_sym_u64] = ACTIONS(2038), - [anon_sym_i64] = ACTIONS(2038), - [anon_sym_u128] = ACTIONS(2038), - [anon_sym_i128] = ACTIONS(2038), - [anon_sym_isize] = ACTIONS(2038), - [anon_sym_usize] = ACTIONS(2038), - [anon_sym_f32] = ACTIONS(2038), - [anon_sym_f64] = ACTIONS(2038), - [anon_sym_bool] = ACTIONS(2038), - [anon_sym_str] = ACTIONS(2038), - [anon_sym_char] = ACTIONS(2038), - [aux_sym__non_special_token_token1] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_async] = ACTIONS(2038), - [anon_sym_await] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_fn] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_impl] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_mod] = ACTIONS(2038), - [anon_sym_pub] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_trait] = ACTIONS(2038), - [anon_sym_type] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_unsafe] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_where] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [sym_mutable_specifier] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2064), - [sym_raw_string_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_RPAREN] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2050), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [sym_integer_literal] = ACTIONS(2053), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2062), + [sym_raw_string_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [491] = { [sym_attribute_item] = STATE(533), @@ -59828,35 +60272,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(533), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59865,14 +60309,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [492] = { [sym__token_pattern] = STATE(499), @@ -59883,12 +60328,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [aux_sym__non_special_token_token1] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_where] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [sym_mutable_specifier] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [493] = { + [sym__token_pattern] = STATE(494), + [sym_token_tree_pattern] = STATE(494), + [sym_token_binding_pattern] = STATE(494), + [sym_token_repetition_pattern] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2016), [anon_sym_u8] = ACTIONS(2067), [anon_sym_i8] = ACTIONS(2067), [anon_sym_u16] = ACTIONS(2067), @@ -59936,95 +60458,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), [sym_mutable_specifier] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), [sym_self] = ACTIONS(2067), [sym_super] = ACTIONS(2067), [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym__token_pattern] = STATE(494), - [sym_token_tree_pattern] = STATE(494), - [sym_token_binding_pattern] = STATE(494), - [sym_token_repetition_pattern] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2069), - [anon_sym_i8] = ACTIONS(2069), - [anon_sym_u16] = ACTIONS(2069), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [aux_sym__non_special_token_token1] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_where] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [sym_mutable_specifier] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [494] = { [sym__token_pattern] = STATE(251), @@ -60035,72 +60482,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [495] = { [sym__token_pattern] = STATE(485), @@ -60111,72 +60559,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2071), + [anon_sym_i8] = ACTIONS(2071), + [anon_sym_u16] = ACTIONS(2071), + [anon_sym_i16] = ACTIONS(2071), + [anon_sym_u32] = ACTIONS(2071), + [anon_sym_i32] = ACTIONS(2071), + [anon_sym_u64] = ACTIONS(2071), + [anon_sym_i64] = ACTIONS(2071), + [anon_sym_u128] = ACTIONS(2071), + [anon_sym_i128] = ACTIONS(2071), + [anon_sym_isize] = ACTIONS(2071), + [anon_sym_usize] = ACTIONS(2071), + [anon_sym_f32] = ACTIONS(2071), + [anon_sym_f64] = ACTIONS(2071), + [anon_sym_bool] = ACTIONS(2071), + [anon_sym_str] = ACTIONS(2071), + [anon_sym_char] = ACTIONS(2071), + [aux_sym__non_special_token_token1] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_impl] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_mod] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_trait] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_where] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [sym_mutable_specifier] = ACTIONS(2071), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_crate] = ACTIONS(2071), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [496] = { [sym__token_pattern] = STATE(251), @@ -60187,72 +60636,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [497] = { [sym__token_pattern] = STATE(486), @@ -60263,12 +60713,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2075), + [anon_sym_i8] = ACTIONS(2075), + [anon_sym_u16] = ACTIONS(2075), + [anon_sym_i16] = ACTIONS(2075), + [anon_sym_u32] = ACTIONS(2075), + [anon_sym_i32] = ACTIONS(2075), + [anon_sym_u64] = ACTIONS(2075), + [anon_sym_i64] = ACTIONS(2075), + [anon_sym_u128] = ACTIONS(2075), + [anon_sym_i128] = ACTIONS(2075), + [anon_sym_isize] = ACTIONS(2075), + [anon_sym_usize] = ACTIONS(2075), + [anon_sym_f32] = ACTIONS(2075), + [anon_sym_f64] = ACTIONS(2075), + [anon_sym_bool] = ACTIONS(2075), + [anon_sym_str] = ACTIONS(2075), + [anon_sym_char] = ACTIONS(2075), + [aux_sym__non_special_token_token1] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_await] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_impl] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_mod] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_trait] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [sym_mutable_specifier] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [498] = { + [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(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2016), [anon_sym_u8] = ACTIONS(2077), [anon_sym_i8] = ACTIONS(2077), [anon_sym_u16] = ACTIONS(2077), @@ -60316,95 +60843,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2077), [anon_sym_while] = ACTIONS(2077), [sym_mutable_specifier] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), [sym_self] = ACTIONS(2077), [sym_super] = ACTIONS(2077), [sym_crate] = ACTIONS(2077), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [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(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [aux_sym__non_special_token_token1] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [sym_mutable_specifier] = ACTIONS(2079), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [499] = { [sym__token_pattern] = STATE(251), @@ -60415,72 +60867,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [aux_sym__non_special_token_token1] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_where] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [sym_mutable_specifier] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [500] = { [sym_attribute_item] = STATE(534), @@ -60511,51 +60964,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(534), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_u8] = ACTIONS(2090), - [anon_sym_i8] = ACTIONS(2090), - [anon_sym_u16] = ACTIONS(2090), - [anon_sym_i16] = ACTIONS(2090), - [anon_sym_u32] = ACTIONS(2090), - [anon_sym_i32] = ACTIONS(2090), - [anon_sym_u64] = ACTIONS(2090), - [anon_sym_i64] = ACTIONS(2090), - [anon_sym_u128] = ACTIONS(2090), - [anon_sym_i128] = ACTIONS(2090), - [anon_sym_isize] = ACTIONS(2090), - [anon_sym_usize] = ACTIONS(2090), - [anon_sym_f32] = ACTIONS(2090), - [anon_sym_f64] = ACTIONS(2090), - [anon_sym_bool] = ACTIONS(2090), - [anon_sym_str] = ACTIONS(2090), - [anon_sym_char] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_ref] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_COLON_COLON] = ACTIONS(2108), - [anon_sym__] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2114), - [sym_mutable_specifier] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2138), - [sym_raw_string_literal] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_u8] = ACTIONS(2088), + [anon_sym_i8] = ACTIONS(2088), + [anon_sym_u16] = ACTIONS(2088), + [anon_sym_i16] = ACTIONS(2088), + [anon_sym_u32] = ACTIONS(2088), + [anon_sym_i32] = ACTIONS(2088), + [anon_sym_u64] = ACTIONS(2088), + [anon_sym_i64] = ACTIONS(2088), + [anon_sym_u128] = ACTIONS(2088), + [anon_sym_i128] = ACTIONS(2088), + [anon_sym_isize] = ACTIONS(2088), + [anon_sym_usize] = ACTIONS(2088), + [anon_sym_f32] = ACTIONS(2088), + [anon_sym_f64] = ACTIONS(2088), + [anon_sym_bool] = ACTIONS(2088), + [anon_sym_str] = ACTIONS(2088), + [anon_sym_char] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_ref] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym__] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2112), + [sym_mutable_specifier] = ACTIONS(2115), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2121), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [sym_self] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_crate] = ACTIONS(2133), + [sym_metavariable] = ACTIONS(2136), + [sym_raw_string_literal] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [501] = { [sym_token_tree] = STATE(490), @@ -60564,72 +61018,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [502] = { [sym_token_tree] = STATE(490), @@ -60638,72 +61093,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [503] = { [sym_token_tree] = STATE(507), @@ -60712,72 +61168,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2157), - [anon_sym_i8] = ACTIONS(2157), - [anon_sym_u16] = ACTIONS(2157), - [anon_sym_i16] = ACTIONS(2157), - [anon_sym_u32] = ACTIONS(2157), - [anon_sym_i32] = ACTIONS(2157), - [anon_sym_u64] = ACTIONS(2157), - [anon_sym_i64] = ACTIONS(2157), - [anon_sym_u128] = ACTIONS(2157), - [anon_sym_i128] = ACTIONS(2157), - [anon_sym_isize] = ACTIONS(2157), - [anon_sym_usize] = ACTIONS(2157), - [anon_sym_f32] = ACTIONS(2157), - [anon_sym_f64] = ACTIONS(2157), - [anon_sym_bool] = ACTIONS(2157), - [anon_sym_str] = ACTIONS(2157), - [anon_sym_char] = ACTIONS(2157), - [aux_sym__non_special_token_token1] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_fn] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_impl] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_mod] = ACTIONS(2157), - [anon_sym_pub] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_union] = ACTIONS(2157), - [anon_sym_unsafe] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_where] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [sym_mutable_specifier] = ACTIONS(2157), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_crate] = ACTIONS(2157), - [sym_metavariable] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [aux_sym__non_special_token_token1] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_where] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [sym_mutable_specifier] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [504] = { [sym_token_tree] = STATE(508), @@ -60786,72 +61243,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2163), - [anon_sym_i8] = ACTIONS(2163), - [anon_sym_u16] = ACTIONS(2163), - [anon_sym_i16] = ACTIONS(2163), - [anon_sym_u32] = ACTIONS(2163), - [anon_sym_i32] = ACTIONS(2163), - [anon_sym_u64] = ACTIONS(2163), - [anon_sym_i64] = ACTIONS(2163), - [anon_sym_u128] = ACTIONS(2163), - [anon_sym_i128] = ACTIONS(2163), - [anon_sym_isize] = ACTIONS(2163), - [anon_sym_usize] = ACTIONS(2163), - [anon_sym_f32] = ACTIONS(2163), - [anon_sym_f64] = ACTIONS(2163), - [anon_sym_bool] = ACTIONS(2163), - [anon_sym_str] = ACTIONS(2163), - [anon_sym_char] = ACTIONS(2163), - [aux_sym__non_special_token_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_impl] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_trait] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_where] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [sym_mutable_specifier] = ACTIONS(2163), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_crate] = ACTIONS(2163), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2163), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [505] = { [sym_token_tree] = STATE(509), @@ -60860,72 +61318,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2167), - [anon_sym_i8] = ACTIONS(2167), - [anon_sym_u16] = ACTIONS(2167), - [anon_sym_i16] = ACTIONS(2167), - [anon_sym_u32] = ACTIONS(2167), - [anon_sym_i32] = ACTIONS(2167), - [anon_sym_u64] = ACTIONS(2167), - [anon_sym_i64] = ACTIONS(2167), - [anon_sym_u128] = ACTIONS(2167), - [anon_sym_i128] = ACTIONS(2167), - [anon_sym_isize] = ACTIONS(2167), - [anon_sym_usize] = ACTIONS(2167), - [anon_sym_f32] = ACTIONS(2167), - [anon_sym_f64] = ACTIONS(2167), - [anon_sym_bool] = ACTIONS(2167), - [anon_sym_str] = ACTIONS(2167), - [anon_sym_char] = ACTIONS(2167), - [aux_sym__non_special_token_token1] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_impl] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_mod] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_trait] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_where] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [sym_mutable_specifier] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2169), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [aux_sym__non_special_token_token1] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_where] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [sym_mutable_specifier] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), + [sym_metavariable] = ACTIONS(2167), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [506] = { [sym_token_tree] = STATE(501), @@ -60934,72 +61393,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2171), - [anon_sym_i8] = ACTIONS(2171), - [anon_sym_u16] = ACTIONS(2171), - [anon_sym_i16] = ACTIONS(2171), - [anon_sym_u32] = ACTIONS(2171), - [anon_sym_i32] = ACTIONS(2171), - [anon_sym_u64] = ACTIONS(2171), - [anon_sym_i64] = ACTIONS(2171), - [anon_sym_u128] = ACTIONS(2171), - [anon_sym_i128] = ACTIONS(2171), - [anon_sym_isize] = ACTIONS(2171), - [anon_sym_usize] = ACTIONS(2171), - [anon_sym_f32] = ACTIONS(2171), - [anon_sym_f64] = ACTIONS(2171), - [anon_sym_bool] = ACTIONS(2171), - [anon_sym_str] = ACTIONS(2171), - [anon_sym_char] = ACTIONS(2171), - [aux_sym__non_special_token_token1] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_mod] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_trait] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [sym_mutable_specifier] = ACTIONS(2171), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2175), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [aux_sym__non_special_token_token1] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [sym_mutable_specifier] = ACTIONS(2169), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2169), + [sym_super] = ACTIONS(2169), + [sym_crate] = ACTIONS(2169), + [sym_metavariable] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [507] = { [sym_token_tree] = STATE(490), @@ -61008,72 +61468,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [508] = { [sym_token_tree] = STATE(490), @@ -61082,72 +61543,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [509] = { [sym_token_tree] = STATE(490), @@ -61156,72 +61618,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [510] = { [sym_token_tree] = STATE(515), @@ -61230,72 +61693,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2179), - [anon_sym_i8] = ACTIONS(2179), - [anon_sym_u16] = ACTIONS(2179), - [anon_sym_i16] = ACTIONS(2179), - [anon_sym_u32] = ACTIONS(2179), - [anon_sym_i32] = ACTIONS(2179), - [anon_sym_u64] = ACTIONS(2179), - [anon_sym_i64] = ACTIONS(2179), - [anon_sym_u128] = ACTIONS(2179), - [anon_sym_i128] = ACTIONS(2179), - [anon_sym_isize] = ACTIONS(2179), - [anon_sym_usize] = ACTIONS(2179), - [anon_sym_f32] = ACTIONS(2179), - [anon_sym_f64] = ACTIONS(2179), - [anon_sym_bool] = ACTIONS(2179), - [anon_sym_str] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [aux_sym__non_special_token_token1] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_impl] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_mod] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_trait] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_where] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [sym_mutable_specifier] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2179), - [sym_super] = ACTIONS(2179), - [sym_crate] = ACTIONS(2179), - [sym_metavariable] = ACTIONS(2181), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_metavariable] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [511] = { [sym_token_tree] = STATE(516), @@ -61304,72 +61768,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2183), - [anon_sym_i8] = ACTIONS(2183), - [anon_sym_u16] = ACTIONS(2183), - [anon_sym_i16] = ACTIONS(2183), - [anon_sym_u32] = ACTIONS(2183), - [anon_sym_i32] = ACTIONS(2183), - [anon_sym_u64] = ACTIONS(2183), - [anon_sym_i64] = ACTIONS(2183), - [anon_sym_u128] = ACTIONS(2183), - [anon_sym_i128] = ACTIONS(2183), - [anon_sym_isize] = ACTIONS(2183), - [anon_sym_usize] = ACTIONS(2183), - [anon_sym_f32] = ACTIONS(2183), - [anon_sym_f64] = ACTIONS(2183), - [anon_sym_bool] = ACTIONS(2183), - [anon_sym_str] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [aux_sym__non_special_token_token1] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_impl] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_mod] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_trait] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_where] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [sym_mutable_specifier] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_crate] = ACTIONS(2183), - [sym_metavariable] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2183), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [512] = { [sym_token_tree] = STATE(526), @@ -61378,72 +61843,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2187), - [anon_sym_i8] = ACTIONS(2187), - [anon_sym_u16] = ACTIONS(2187), - [anon_sym_i16] = ACTIONS(2187), - [anon_sym_u32] = ACTIONS(2187), - [anon_sym_i32] = ACTIONS(2187), - [anon_sym_u64] = ACTIONS(2187), - [anon_sym_i64] = ACTIONS(2187), - [anon_sym_u128] = ACTIONS(2187), - [anon_sym_i128] = ACTIONS(2187), - [anon_sym_isize] = ACTIONS(2187), - [anon_sym_usize] = ACTIONS(2187), - [anon_sym_f32] = ACTIONS(2187), - [anon_sym_f64] = ACTIONS(2187), - [anon_sym_bool] = ACTIONS(2187), - [anon_sym_str] = ACTIONS(2187), - [anon_sym_char] = ACTIONS(2187), - [aux_sym__non_special_token_token1] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [anon_sym_as] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_fn] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_impl] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_mod] = ACTIONS(2187), - [anon_sym_pub] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_trait] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_unsafe] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [sym_mutable_specifier] = ACTIONS(2187), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2187), - [sym_super] = ACTIONS(2187), - [sym_crate] = ACTIONS(2187), - [sym_metavariable] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [513] = { [sym_token_tree] = STATE(490), @@ -61452,72 +61918,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2193), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [514] = { [sym_token_tree] = STATE(490), @@ -61526,72 +61993,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [515] = { [sym_token_tree] = STATE(490), @@ -61600,72 +62068,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [516] = { [sym_token_tree] = STATE(490), @@ -61674,72 +62143,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [517] = { [sym_token_tree] = STATE(490), @@ -61748,72 +62218,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [518] = { [sym_token_tree] = STATE(490), @@ -61822,72 +62293,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [519] = { [sym_token_tree] = STATE(490), @@ -61896,72 +62368,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [520] = { [sym_token_tree] = STATE(490), @@ -61970,72 +62443,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [521] = { [sym_token_tree] = STATE(513), @@ -62044,72 +62518,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [522] = { [sym_token_tree] = STATE(518), @@ -62118,72 +62593,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2205), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [523] = { [sym_token_tree] = STATE(519), @@ -62192,72 +62668,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2207), - [anon_sym_i8] = ACTIONS(2207), - [anon_sym_u16] = ACTIONS(2207), - [anon_sym_i16] = ACTIONS(2207), - [anon_sym_u32] = ACTIONS(2207), - [anon_sym_i32] = ACTIONS(2207), - [anon_sym_u64] = ACTIONS(2207), - [anon_sym_i64] = ACTIONS(2207), - [anon_sym_u128] = ACTIONS(2207), - [anon_sym_i128] = ACTIONS(2207), - [anon_sym_isize] = ACTIONS(2207), - [anon_sym_usize] = ACTIONS(2207), - [anon_sym_f32] = ACTIONS(2207), - [anon_sym_f64] = ACTIONS(2207), - [anon_sym_bool] = ACTIONS(2207), - [anon_sym_str] = ACTIONS(2207), - [anon_sym_char] = ACTIONS(2207), - [aux_sym__non_special_token_token1] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_default] = ACTIONS(2207), - [anon_sym_enum] = ACTIONS(2207), - [anon_sym_fn] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_impl] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_mod] = ACTIONS(2207), - [anon_sym_pub] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2207), - [anon_sym_trait] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_union] = ACTIONS(2207), - [anon_sym_unsafe] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_where] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [sym_mutable_specifier] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2207), - [sym_super] = ACTIONS(2207), - [sym_crate] = ACTIONS(2207), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2207), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [524] = { [sym_token_tree] = STATE(514), @@ -62266,72 +62743,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [aux_sym__non_special_token_token1] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_metavariable] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [525] = { [sym_token_tree] = STATE(517), @@ -62340,72 +62818,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2217), - [anon_sym_i8] = ACTIONS(2217), - [anon_sym_u16] = ACTIONS(2217), - [anon_sym_i16] = ACTIONS(2217), - [anon_sym_u32] = ACTIONS(2217), - [anon_sym_i32] = ACTIONS(2217), - [anon_sym_u64] = ACTIONS(2217), - [anon_sym_i64] = ACTIONS(2217), - [anon_sym_u128] = ACTIONS(2217), - [anon_sym_i128] = ACTIONS(2217), - [anon_sym_isize] = ACTIONS(2217), - [anon_sym_usize] = ACTIONS(2217), - [anon_sym_f32] = ACTIONS(2217), - [anon_sym_f64] = ACTIONS(2217), - [anon_sym_bool] = ACTIONS(2217), - [anon_sym_str] = ACTIONS(2217), - [anon_sym_char] = ACTIONS(2217), - [aux_sym__non_special_token_token1] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_impl] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_mod] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_where] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [sym_mutable_specifier] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2219), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2217), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [526] = { [sym_token_tree] = STATE(490), @@ -62414,72 +62893,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [527] = { [sym_token_tree] = STATE(520), @@ -62488,72 +62968,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2223), - [anon_sym_i8] = ACTIONS(2223), - [anon_sym_u16] = ACTIONS(2223), - [anon_sym_i16] = ACTIONS(2223), - [anon_sym_u32] = ACTIONS(2223), - [anon_sym_i32] = ACTIONS(2223), - [anon_sym_u64] = ACTIONS(2223), - [anon_sym_i64] = ACTIONS(2223), - [anon_sym_u128] = ACTIONS(2223), - [anon_sym_i128] = ACTIONS(2223), - [anon_sym_isize] = ACTIONS(2223), - [anon_sym_usize] = ACTIONS(2223), - [anon_sym_f32] = ACTIONS(2223), - [anon_sym_f64] = ACTIONS(2223), - [anon_sym_bool] = ACTIONS(2223), - [anon_sym_str] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [528] = { [sym_token_tree] = STATE(530), @@ -62562,72 +63043,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2229), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [529] = { [sym_token_tree] = STATE(490), @@ -62636,72 +63118,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [530] = { [sym_token_tree] = STATE(490), @@ -62710,72 +63193,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [531] = { [sym_token_tree] = STATE(502), @@ -62784,72 +63268,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [532] = { [sym_token_tree] = STATE(529), @@ -62858,72 +63343,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(556), [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_crate] = ACTIONS(2237), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2149), + [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), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [533] = { [sym_attribute_item] = STATE(594), @@ -62952,35 +63438,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -62989,14 +63475,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [534] = { [sym_attribute_item] = STATE(594), @@ -63025,35 +63512,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -63062,14 +63549,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [535] = { [sym_attribute_item] = STATE(545), @@ -63097,9 +63585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(545), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2241), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63119,30 +63607,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2251), + [anon_sym_COMMA] = ACTIONS(2249), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [536] = { [sym_attribute_item] = STATE(543), @@ -63170,9 +63659,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_RPAREN] = ACTIONS(2253), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63192,29 +63681,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [537] = { [sym_attribute_item] = STATE(543), @@ -63242,9 +63732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2255), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63264,29 +63754,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [538] = { [sym_attribute_item] = STATE(543), @@ -63314,9 +63805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2257), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63336,29 +63827,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [539] = { [sym_attribute_item] = STATE(543), @@ -63386,9 +63878,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_RPAREN] = ACTIONS(2259), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63408,29 +63900,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [540] = { [sym_attribute_item] = STATE(543), @@ -63458,9 +63951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2261), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63480,29 +63973,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [541] = { [sym_attribute_item] = STATE(543), @@ -63530,9 +64024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63552,100 +64046,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [542] = { - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_RBRACK] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__non_special_token_token1] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [sym_mutable_specifier] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2269), - [aux_sym_string_literal_token1] = ACTIONS(2269), - [sym_char_literal] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2269), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [aux_sym__non_special_token_token1] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [sym_mutable_specifier] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [543] = { [sym_attribute_item] = STATE(1058), @@ -63673,7 +64169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(1058), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -63694,29 +64190,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [544] = { [sym_attribute_item] = STATE(543), @@ -63744,7 +64241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(543), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -63765,29 +64262,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [545] = { [sym_attribute_item] = STATE(1058), @@ -63815,7 +64313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(1333), [aux_sym_enum_variant_list_repeat1] = STATE(1058), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -63836,169 +64334,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2245), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2247), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2251), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [546] = { - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_RBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [sym_char_literal] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2275), - [sym_float_literal] = ACTIONS(2275), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2271), + [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(2273), + [aux_sym_string_literal_token1] = ACTIONS(2273), + [sym_char_literal] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2271), + [anon_sym_false] = ACTIONS(2271), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2273), + [sym_raw_string_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [547] = { - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2279), - [aux_sym_string_literal_token1] = ACTIONS(2279), - [sym_char_literal] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2279), - [sym_float_literal] = ACTIONS(2279), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2275), + [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(2277), + [aux_sym_string_literal_token1] = ACTIONS(2277), + [sym_char_literal] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2277), + [sym_raw_string_literal] = ACTIONS(2277), + [sym_float_literal] = ACTIONS(2277), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [548] = { [sym_bracketed_type] = STATE(2420), @@ -64023,36 +64524,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_COMMA] = ACTIONS(818), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -64061,14 +64562,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [549] = { [sym_bracketed_type] = STATE(2420), @@ -64093,36 +64595,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_COMMA] = ACTIONS(840), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -64131,14 +64633,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [550] = { [sym_identifier] = ACTIONS(604), @@ -64201,7 +64704,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(602), [anon_sym_true] = ACTIONS(604), [anon_sym_false] = ACTIONS(604), - [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(604), [sym_super] = ACTIONS(604), [sym_crate] = ACTIONS(604), @@ -64209,6 +64711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(602), [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [551] = { [sym_parameter] = STATE(1958), @@ -64234,121 +64738,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(1212), + [sym_mutable_specifier] = ACTIONS(2287), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [552] = { - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2297), - [aux_sym_string_literal_token1] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [aux_sym__non_special_token_token1] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_where] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [sym_mutable_specifier] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2295), + [sym_raw_string_literal] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [553] = { [sym_function_modifiers] = STATE(2404), @@ -64377,7 +64883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64398,9 +64904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2299), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), @@ -64413,222 +64919,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2301), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [554] = { - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_RBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2307), - [aux_sym_string_literal_token1] = ACTIONS(2307), - [sym_char_literal] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [aux_sym__non_special_token_token1] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_where] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [sym_mutable_specifier] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2305), + [aux_sym_string_literal_token1] = ACTIONS(2305), + [sym_char_literal] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2305), + [sym_raw_string_literal] = ACTIONS(2305), + [sym_float_literal] = ACTIONS(2305), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [555] = { - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_u8] = ACTIONS(2309), - [anon_sym_i8] = ACTIONS(2309), - [anon_sym_u16] = ACTIONS(2309), - [anon_sym_i16] = ACTIONS(2309), - [anon_sym_u32] = ACTIONS(2309), - [anon_sym_i32] = ACTIONS(2309), - [anon_sym_u64] = ACTIONS(2309), - [anon_sym_i64] = ACTIONS(2309), - [anon_sym_u128] = ACTIONS(2309), - [anon_sym_i128] = ACTIONS(2309), - [anon_sym_isize] = ACTIONS(2309), - [anon_sym_usize] = ACTIONS(2309), - [anon_sym_f32] = ACTIONS(2309), - [anon_sym_f64] = ACTIONS(2309), - [anon_sym_bool] = ACTIONS(2309), - [anon_sym_str] = ACTIONS(2309), - [anon_sym_char] = ACTIONS(2309), - [aux_sym__non_special_token_token1] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_impl] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_mod] = ACTIONS(2309), - [anon_sym_pub] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_where] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [sym_mutable_specifier] = ACTIONS(2309), - [sym_integer_literal] = ACTIONS(2311), - [aux_sym_string_literal_token1] = ACTIONS(2311), - [sym_char_literal] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_crate] = ACTIONS(2309), - [sym_metavariable] = ACTIONS(2311), - [sym_raw_string_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2311), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [aux_sym__non_special_token_token1] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_where] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [sym_mutable_specifier] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2309), + [aux_sym_string_literal_token1] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(2309), + [sym_raw_string_literal] = ACTIONS(2309), + [sym_float_literal] = ACTIONS(2309), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [556] = { - [sym_identifier] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_RBRACK] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u128] = ACTIONS(2313), - [anon_sym_i128] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_str] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [aux_sym__non_special_token_token1] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_fn] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_mod] = ACTIONS(2313), - [anon_sym_pub] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_unsafe] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [sym_mutable_specifier] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2315), - [aux_sym_string_literal_token1] = ACTIONS(2315), - [sym_char_literal] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_crate] = ACTIONS(2313), - [sym_metavariable] = ACTIONS(2315), - [sym_raw_string_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_RBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [aux_sym__non_special_token_token1] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [sym_mutable_specifier] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2313), + [aux_sym_string_literal_token1] = ACTIONS(2313), + [sym_char_literal] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_metavariable] = ACTIONS(2313), + [sym_raw_string_literal] = ACTIONS(2313), + [sym_float_literal] = ACTIONS(2313), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [557] = { [sym_identifier] = ACTIONS(588), @@ -64691,7 +65201,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(586), [anon_sym_true] = ACTIONS(588), [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(588), [sym_super] = ACTIONS(588), [sym_crate] = ACTIONS(588), @@ -64699,356 +65208,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(586), [sym_float_literal] = ACTIONS(586), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [558] = { - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_RBRACK] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2319), - [aux_sym_string_literal_token1] = ACTIONS(2319), - [sym_char_literal] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), - [sym_metavariable] = ACTIONS(2319), - [sym_raw_string_literal] = ACTIONS(2319), - [sym_float_literal] = ACTIONS(2319), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_RBRACK] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_u8] = ACTIONS(2315), + [anon_sym_i8] = ACTIONS(2315), + [anon_sym_u16] = ACTIONS(2315), + [anon_sym_i16] = ACTIONS(2315), + [anon_sym_u32] = ACTIONS(2315), + [anon_sym_i32] = ACTIONS(2315), + [anon_sym_u64] = ACTIONS(2315), + [anon_sym_i64] = ACTIONS(2315), + [anon_sym_u128] = ACTIONS(2315), + [anon_sym_i128] = ACTIONS(2315), + [anon_sym_isize] = ACTIONS(2315), + [anon_sym_usize] = ACTIONS(2315), + [anon_sym_f32] = ACTIONS(2315), + [anon_sym_f64] = ACTIONS(2315), + [anon_sym_bool] = ACTIONS(2315), + [anon_sym_str] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [aux_sym__non_special_token_token1] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_impl] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_mod] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_trait] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [sym_mutable_specifier] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2317), + [aux_sym_string_literal_token1] = ACTIONS(2317), + [sym_char_literal] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_metavariable] = ACTIONS(2317), + [sym_raw_string_literal] = ACTIONS(2317), + [sym_float_literal] = ACTIONS(2317), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [559] = { - [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_RBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2321), - [anon_sym_i8] = ACTIONS(2321), - [anon_sym_u16] = ACTIONS(2321), - [anon_sym_i16] = ACTIONS(2321), - [anon_sym_u32] = ACTIONS(2321), - [anon_sym_i32] = ACTIONS(2321), - [anon_sym_u64] = ACTIONS(2321), - [anon_sym_i64] = ACTIONS(2321), - [anon_sym_u128] = ACTIONS(2321), - [anon_sym_i128] = ACTIONS(2321), - [anon_sym_isize] = ACTIONS(2321), - [anon_sym_usize] = ACTIONS(2321), - [anon_sym_f32] = ACTIONS(2321), - [anon_sym_f64] = ACTIONS(2321), - [anon_sym_bool] = ACTIONS(2321), - [anon_sym_str] = ACTIONS(2321), - [anon_sym_char] = ACTIONS(2321), - [aux_sym__non_special_token_token1] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_impl] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_mod] = ACTIONS(2321), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(2321), - [anon_sym_unsafe] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2323), - [aux_sym_string_literal_token1] = ACTIONS(2323), - [sym_char_literal] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(2323), - [sym_raw_string_literal] = ACTIONS(2323), - [sym_float_literal] = ACTIONS(2323), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [aux_sym__non_special_token_token1] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_impl] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_mod] = ACTIONS(2319), + [anon_sym_pub] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_trait] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_unsafe] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [sym_mutable_specifier] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2321), + [aux_sym_string_literal_token1] = ACTIONS(2321), + [sym_char_literal] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_metavariable] = ACTIONS(2321), + [sym_raw_string_literal] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [560] = { - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_u8] = ACTIONS(2325), - [anon_sym_i8] = ACTIONS(2325), - [anon_sym_u16] = ACTIONS(2325), - [anon_sym_i16] = ACTIONS(2325), - [anon_sym_u32] = ACTIONS(2325), - [anon_sym_i32] = ACTIONS(2325), - [anon_sym_u64] = ACTIONS(2325), - [anon_sym_i64] = ACTIONS(2325), - [anon_sym_u128] = ACTIONS(2325), - [anon_sym_i128] = ACTIONS(2325), - [anon_sym_isize] = ACTIONS(2325), - [anon_sym_usize] = ACTIONS(2325), - [anon_sym_f32] = ACTIONS(2325), - [anon_sym_f64] = ACTIONS(2325), - [anon_sym_bool] = ACTIONS(2325), - [anon_sym_str] = ACTIONS(2325), - [anon_sym_char] = ACTIONS(2325), - [aux_sym__non_special_token_token1] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_fn] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_impl] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_loop] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_mod] = ACTIONS(2325), - [anon_sym_pub] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_union] = ACTIONS(2325), - [anon_sym_unsafe] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_where] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [sym_mutable_specifier] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2327), - [aux_sym_string_literal_token1] = ACTIONS(2327), - [sym_char_literal] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_crate] = ACTIONS(2325), - [sym_metavariable] = ACTIONS(2327), - [sym_raw_string_literal] = ACTIONS(2327), - [sym_float_literal] = ACTIONS(2327), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2323), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [aux_sym__non_special_token_token1] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_where] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [sym_mutable_specifier] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2325), + [sym_raw_string_literal] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [561] = { - [sym_identifier] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_u8] = ACTIONS(2329), - [anon_sym_i8] = ACTIONS(2329), - [anon_sym_u16] = ACTIONS(2329), - [anon_sym_i16] = ACTIONS(2329), - [anon_sym_u32] = ACTIONS(2329), - [anon_sym_i32] = ACTIONS(2329), - [anon_sym_u64] = ACTIONS(2329), - [anon_sym_i64] = ACTIONS(2329), - [anon_sym_u128] = ACTIONS(2329), - [anon_sym_i128] = ACTIONS(2329), - [anon_sym_isize] = ACTIONS(2329), - [anon_sym_usize] = ACTIONS(2329), - [anon_sym_f32] = ACTIONS(2329), - [anon_sym_f64] = ACTIONS(2329), - [anon_sym_bool] = ACTIONS(2329), - [anon_sym_str] = ACTIONS(2329), - [anon_sym_char] = ACTIONS(2329), - [aux_sym__non_special_token_token1] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_fn] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_impl] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_mod] = ACTIONS(2329), - [anon_sym_pub] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_where] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [sym_mutable_specifier] = ACTIONS(2329), - [sym_integer_literal] = ACTIONS(2331), - [aux_sym_string_literal_token1] = ACTIONS(2331), - [sym_char_literal] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2329), - [sym_super] = ACTIONS(2329), - [sym_crate] = ACTIONS(2329), - [sym_metavariable] = ACTIONS(2331), - [sym_raw_string_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_RBRACK] = ACTIONS(2329), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_u8] = ACTIONS(2327), + [anon_sym_i8] = ACTIONS(2327), + [anon_sym_u16] = ACTIONS(2327), + [anon_sym_i16] = ACTIONS(2327), + [anon_sym_u32] = ACTIONS(2327), + [anon_sym_i32] = ACTIONS(2327), + [anon_sym_u64] = ACTIONS(2327), + [anon_sym_i64] = ACTIONS(2327), + [anon_sym_u128] = ACTIONS(2327), + [anon_sym_i128] = ACTIONS(2327), + [anon_sym_isize] = ACTIONS(2327), + [anon_sym_usize] = ACTIONS(2327), + [anon_sym_f32] = ACTIONS(2327), + [anon_sym_f64] = ACTIONS(2327), + [anon_sym_bool] = ACTIONS(2327), + [anon_sym_str] = ACTIONS(2327), + [anon_sym_char] = ACTIONS(2327), + [aux_sym__non_special_token_token1] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_impl] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_mod] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_trait] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_where] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [sym_mutable_specifier] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2329), + [aux_sym_string_literal_token1] = ACTIONS(2329), + [sym_char_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(2329), + [sym_raw_string_literal] = ACTIONS(2329), + [sym_float_literal] = ACTIONS(2329), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [562] = { - [sym_identifier] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_RBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2333), - [anon_sym_i8] = ACTIONS(2333), - [anon_sym_u16] = ACTIONS(2333), - [anon_sym_i16] = ACTIONS(2333), - [anon_sym_u32] = ACTIONS(2333), - [anon_sym_i32] = ACTIONS(2333), - [anon_sym_u64] = ACTIONS(2333), - [anon_sym_i64] = ACTIONS(2333), - [anon_sym_u128] = ACTIONS(2333), - [anon_sym_i128] = ACTIONS(2333), - [anon_sym_isize] = ACTIONS(2333), - [anon_sym_usize] = ACTIONS(2333), - [anon_sym_f32] = ACTIONS(2333), - [anon_sym_f64] = ACTIONS(2333), - [anon_sym_bool] = ACTIONS(2333), - [anon_sym_str] = ACTIONS(2333), - [anon_sym_char] = ACTIONS(2333), - [aux_sym__non_special_token_token1] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_fn] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_impl] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_mod] = ACTIONS(2333), - [anon_sym_pub] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_union] = ACTIONS(2333), - [anon_sym_unsafe] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_where] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [sym_mutable_specifier] = ACTIONS(2333), - [sym_integer_literal] = ACTIONS(2335), - [aux_sym_string_literal_token1] = ACTIONS(2335), - [sym_char_literal] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_crate] = ACTIONS(2333), - [sym_metavariable] = ACTIONS(2335), - [sym_raw_string_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2331), + [anon_sym_u8] = ACTIONS(2331), + [anon_sym_i8] = ACTIONS(2331), + [anon_sym_u16] = ACTIONS(2331), + [anon_sym_i16] = ACTIONS(2331), + [anon_sym_u32] = ACTIONS(2331), + [anon_sym_i32] = ACTIONS(2331), + [anon_sym_u64] = ACTIONS(2331), + [anon_sym_i64] = ACTIONS(2331), + [anon_sym_u128] = ACTIONS(2331), + [anon_sym_i128] = ACTIONS(2331), + [anon_sym_isize] = ACTIONS(2331), + [anon_sym_usize] = ACTIONS(2331), + [anon_sym_f32] = ACTIONS(2331), + [anon_sym_f64] = ACTIONS(2331), + [anon_sym_bool] = ACTIONS(2331), + [anon_sym_str] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [aux_sym__non_special_token_token1] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_mod] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_trait] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_where] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [sym_mutable_specifier] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2333), + [sym_raw_string_literal] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [563] = { [sym_bracketed_type] = STATE(2420), @@ -65073,36 +65589,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_COMMA] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2337), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65111,224 +65627,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [564] = { - [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_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(1004), - [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), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_RBRACK] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_u8] = ACTIONS(2339), + [anon_sym_i8] = ACTIONS(2339), + [anon_sym_u16] = ACTIONS(2339), + [anon_sym_i16] = ACTIONS(2339), + [anon_sym_u32] = ACTIONS(2339), + [anon_sym_i32] = ACTIONS(2339), + [anon_sym_u64] = ACTIONS(2339), + [anon_sym_i64] = ACTIONS(2339), + [anon_sym_u128] = ACTIONS(2339), + [anon_sym_i128] = ACTIONS(2339), + [anon_sym_isize] = ACTIONS(2339), + [anon_sym_usize] = ACTIONS(2339), + [anon_sym_f32] = ACTIONS(2339), + [anon_sym_f64] = ACTIONS(2339), + [anon_sym_bool] = ACTIONS(2339), + [anon_sym_str] = ACTIONS(2339), + [anon_sym_char] = ACTIONS(2339), + [aux_sym__non_special_token_token1] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_as] = ACTIONS(2339), + [anon_sym_async] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_default] = ACTIONS(2339), + [anon_sym_enum] = ACTIONS(2339), + [anon_sym_fn] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_impl] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_mod] = ACTIONS(2339), + [anon_sym_pub] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2339), + [anon_sym_trait] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_union] = ACTIONS(2339), + [anon_sym_unsafe] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_where] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [sym_mutable_specifier] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(2341), + [aux_sym_string_literal_token1] = ACTIONS(2341), + [sym_char_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(2339), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(2341), + [sym_raw_string_literal] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [565] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_metavariable] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2343), + [anon_sym_u8] = ACTIONS(2343), + [anon_sym_i8] = ACTIONS(2343), + [anon_sym_u16] = ACTIONS(2343), + [anon_sym_i16] = ACTIONS(2343), + [anon_sym_u32] = ACTIONS(2343), + [anon_sym_i32] = ACTIONS(2343), + [anon_sym_u64] = ACTIONS(2343), + [anon_sym_i64] = ACTIONS(2343), + [anon_sym_u128] = ACTIONS(2343), + [anon_sym_i128] = ACTIONS(2343), + [anon_sym_isize] = ACTIONS(2343), + [anon_sym_usize] = ACTIONS(2343), + [anon_sym_f32] = ACTIONS(2343), + [anon_sym_f64] = ACTIONS(2343), + [anon_sym_bool] = ACTIONS(2343), + [anon_sym_str] = ACTIONS(2343), + [anon_sym_char] = ACTIONS(2343), + [aux_sym__non_special_token_token1] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_as] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_enum] = ACTIONS(2343), + [anon_sym_fn] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_impl] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_mod] = ACTIONS(2343), + [anon_sym_pub] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_static] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_where] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [sym_mutable_specifier] = ACTIONS(2343), + [sym_integer_literal] = ACTIONS(2345), + [aux_sym_string_literal_token1] = ACTIONS(2345), + [sym_char_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2343), + [anon_sym_false] = ACTIONS(2343), + [sym_self] = ACTIONS(2343), + [sym_super] = ACTIONS(2343), + [sym_crate] = ACTIONS(2343), + [sym_metavariable] = ACTIONS(2345), + [sym_raw_string_literal] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [566] = { - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2349), - [anon_sym_i8] = ACTIONS(2349), - [anon_sym_u16] = ACTIONS(2349), - [anon_sym_i16] = ACTIONS(2349), - [anon_sym_u32] = ACTIONS(2349), - [anon_sym_i32] = ACTIONS(2349), - [anon_sym_u64] = ACTIONS(2349), - [anon_sym_i64] = ACTIONS(2349), - [anon_sym_u128] = ACTIONS(2349), - [anon_sym_i128] = ACTIONS(2349), - [anon_sym_isize] = ACTIONS(2349), - [anon_sym_usize] = ACTIONS(2349), - [anon_sym_f32] = ACTIONS(2349), - [anon_sym_f64] = ACTIONS(2349), - [anon_sym_bool] = ACTIONS(2349), - [anon_sym_str] = ACTIONS(2349), - [anon_sym_char] = ACTIONS(2349), - [aux_sym__non_special_token_token1] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_fn] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_impl] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_mod] = ACTIONS(2349), - [anon_sym_pub] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_struct] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_union] = ACTIONS(2349), - [anon_sym_unsafe] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [sym_mutable_specifier] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2351), - [aux_sym_string_literal_token1] = ACTIONS(2351), - [sym_char_literal] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_crate] = ACTIONS(2349), - [sym_metavariable] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2351), - [sym_float_literal] = ACTIONS(2351), - [sym_block_comment] = ACTIONS(3), + [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_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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [567] = { [sym_function_modifiers] = STATE(2404), @@ -65355,11 +65875,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2351), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65377,12 +65897,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2353), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65392,12 +65912,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [568] = { [sym_bracketed_type] = STATE(2420), @@ -65422,35 +65943,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65459,14 +65980,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [569] = { [sym_bracketed_type] = STATE(2420), @@ -65491,35 +66013,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65528,14 +66050,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [570] = { [sym_parameter] = STATE(2307), @@ -65561,35 +66084,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(1212), + [sym_mutable_specifier] = ACTIONS(2287), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -65597,14 +66120,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [571] = { [sym_function_modifiers] = STATE(2404), @@ -65631,11 +66155,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2351), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65653,12 +66177,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2353), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65668,12 +66192,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [572] = { [sym_bracketed_type] = STATE(2420), @@ -65698,35 +66223,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65735,14 +66260,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [573] = { [sym_function_modifiers] = STATE(2404), @@ -65769,11 +66295,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2351), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65791,12 +66317,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2353), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65806,12 +66332,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [574] = { [sym_bracketed_type] = STATE(2420), @@ -65836,35 +66363,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65873,14 +66400,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [575] = { [sym_function_modifiers] = STATE(2404), @@ -65907,11 +66435,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2351), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65929,12 +66457,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2353), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65944,12 +66472,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [576] = { [sym_bracketed_type] = STATE(2420), @@ -65974,35 +66503,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66011,14 +66540,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [577] = { [sym_bracketed_type] = STATE(2420), @@ -66043,35 +66573,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66080,14 +66610,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [578] = { [sym_bracketed_type] = STATE(2420), @@ -66112,35 +66643,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(1212), + [sym_mutable_specifier] = ACTIONS(2367), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -66148,14 +66679,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [579] = { [sym_bracketed_type] = STATE(2420), @@ -66180,34 +66712,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66216,14 +66748,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [580] = { [sym_bracketed_type] = STATE(2420), @@ -66248,34 +66781,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66284,14 +66817,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [581] = { [sym_function_modifiers] = STATE(2353), @@ -66316,50 +66850,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2295), [sym_scoped_type_identifier] = STATE(753), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2389), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_dyn] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_metavariable] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [582] = { [sym_bracketed_type] = STATE(2420), @@ -66384,34 +66919,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66420,14 +66955,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [583] = { [sym_function_modifiers] = STATE(2404), @@ -66452,10 +66988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -66474,7 +67010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -66489,13 +67025,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2405), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [584] = { [sym_bracketed_type] = STATE(2420), @@ -66520,34 +67057,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66556,14 +67093,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [585] = { [sym_bracketed_type] = STATE(2420), @@ -66588,34 +67126,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66624,14 +67162,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [586] = { [sym_bracketed_type] = STATE(2420), @@ -66656,34 +67195,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66692,14 +67231,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [587] = { [sym_bracketed_type] = STATE(2420), @@ -66724,34 +67264,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66760,14 +67300,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [588] = { [sym_bracketed_type] = STATE(2420), @@ -66792,34 +67333,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66828,14 +67369,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [589] = { [sym_bracketed_type] = STATE(2420), @@ -66860,34 +67402,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66896,14 +67438,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [590] = { [sym_bracketed_type] = STATE(2420), @@ -66928,34 +67471,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66964,14 +67507,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [591] = { [sym_function_modifiers] = STATE(2404), @@ -66996,10 +67540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -67018,7 +67562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -67033,13 +67577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2415), + [sym_mutable_specifier] = ACTIONS(2411), + [sym_self] = ACTIONS(2413), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [592] = { [sym_bracketed_type] = STATE(2420), @@ -67064,35 +67609,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(1212), + [sym_mutable_specifier] = ACTIONS(2415), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -67100,14 +67645,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [593] = { [sym_bracketed_type] = STATE(2420), @@ -67132,34 +67678,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67168,82 +67714,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [594] = { [sym_attribute_item] = STATE(594), [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [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), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_COMMA] = ACTIONS(2421), - [anon_sym_ref] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2421), - [anon_sym__] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2421), - [sym_mutable_specifier] = ACTIONS(2419), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_move] = 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(3), - [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), + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [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), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_COMMA] = ACTIONS(2419), + [anon_sym_ref] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym__] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2417), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_move] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [595] = { [sym_bracketed_type] = STATE(2420), @@ -67268,35 +67816,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(1212), + [sym_mutable_specifier] = ACTIONS(2424), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -67304,14 +67852,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [596] = { [sym_bracketed_type] = STATE(2420), @@ -67336,34 +67885,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67372,14 +67921,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [597] = { [sym_bracketed_type] = STATE(2420), @@ -67404,34 +67954,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67440,14 +67990,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [598] = { [sym_bracketed_type] = STATE(2420), @@ -67472,34 +68023,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67508,14 +68059,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [599] = { [sym_bracketed_type] = STATE(2420), @@ -67540,34 +68092,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67576,14 +68128,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [600] = { [sym_bracketed_type] = STATE(2420), @@ -67608,34 +68161,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67644,14 +68197,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [601] = { [sym_bracketed_type] = STATE(2420), @@ -67676,34 +68230,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67712,14 +68266,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [602] = { [sym_bracketed_type] = STATE(2420), @@ -67744,34 +68299,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67780,14 +68335,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [603] = { [sym_bracketed_type] = STATE(2420), @@ -67812,34 +68368,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67848,14 +68404,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [604] = { [sym_bracketed_type] = STATE(2420), @@ -67880,34 +68437,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67916,14 +68473,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [605] = { [sym_bracketed_type] = STATE(2420), @@ -67948,34 +68506,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67984,14 +68542,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [606] = { [sym_function_modifiers] = STATE(2404), @@ -68016,10 +68575,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -68038,7 +68597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68053,13 +68612,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2428), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2426), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [607] = { [sym_bracketed_type] = STATE(2420), @@ -68084,34 +68644,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68120,14 +68680,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [608] = { [sym_bracketed_type] = STATE(2420), @@ -68152,34 +68713,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68188,14 +68749,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [609] = { [sym_bracketed_type] = STATE(2420), @@ -68220,34 +68782,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68256,14 +68818,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [610] = { [sym_bracketed_type] = STATE(2420), @@ -68288,34 +68851,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68324,14 +68887,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [611] = { [sym_bracketed_type] = STATE(2420), @@ -68356,34 +68920,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68392,14 +68956,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [612] = { [sym_bracketed_type] = STATE(2420), @@ -68424,34 +68989,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68460,14 +69025,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [613] = { [sym_bracketed_type] = STATE(2420), @@ -68492,34 +69058,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1375), [sym_string_literal] = STATE(1375), [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1210), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68528,14 +69094,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1216), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [614] = { [sym_function_modifiers] = STATE(2404), @@ -68561,7 +69128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -68582,7 +69149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68597,12 +69164,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, [615] = { [sym_function_modifiers] = STATE(2404), @@ -68627,7 +69195,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [616] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_RPAREN] = ACTIONS(2432), [anon_sym_LBRACK] = ACTIONS(890), @@ -68649,7 +69285,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [617] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68664,14 +69368,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [618] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2134), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(606), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2438), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [616] = { + [619] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1116), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(581), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2440), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [620] = { [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), [sym__type] = STATE(2121), @@ -68694,9 +69535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_RPAREN] = ACTIONS(2442), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68716,7 +69557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68731,17 +69572,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [617] = { + [621] = { [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(666), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1831), + [sym__type] = STATE(1646), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -68749,7 +69592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), + [sym_generic_type] = STATE(1642), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -68759,11 +69602,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1515), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2444), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2436), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68783,7 +69625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68794,23 +69636,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2446), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [618] = { + [622] = { [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2134), + [sym__type] = STATE(1391), [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(606), + [sym_lifetime] = STATE(583), [sym_array_type] = STATE(1392), [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), @@ -68828,7 +69671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -68849,7 +69692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2436), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68864,82 +69707,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2440), + [sym_mutable_specifier] = ACTIONS(2448), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [623] = { + [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(634), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1664), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1684), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [619] = { - [sym_function_modifiers] = STATE(2353), + [624] = { + [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1116), - [sym_bracketed_type] = STATE(2456), - [sym_lifetime] = STATE(581), - [sym_array_type] = STATE(1091), - [sym_for_lifetimes] = STATE(1182), - [sym_function_type] = STATE(1091), - [sym_tuple_type] = STATE(1091), - [sym_unit_type] = STATE(1091), - [sym_generic_type] = STATE(808), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_bounded_type] = STATE(1091), - [sym_reference_type] = STATE(1091), - [sym_pointer_type] = STATE(1091), - [sym_empty_type] = STATE(1091), - [sym_abstract_type] = STATE(1091), - [sym_dynamic_type] = STATE(1091), - [sym_macro_invocation] = STATE(1091), - [sym_scoped_identifier] = STATE(2295), - [sym_scoped_type_identifier] = STATE(753), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_dyn] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_metavariable] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [620] = { + [625] = { [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), [sym__type] = STATE(2121), @@ -68962,9 +69875,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2444), + [anon_sym_RPAREN] = ACTIONS(2454), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68984,7 +69897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68999,18 +69912,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [621] = { + [626] = { [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(666), + [sym_type_parameters] = STATE(691), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1646), + [sym__type] = STATE(1627), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69018,7 +69932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1642), + [sym_generic_type] = STATE(1628), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -69028,9 +69942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1518), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2456), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69051,7 +69965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69062,29 +69976,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2446), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [622] = { + [627] = { [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(636), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), + [sym__type] = STATE(1621), [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(583), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), + [sym_generic_type] = STATE(1630), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -69094,9 +70010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1522), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2458), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69117,7 +70033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69128,23 +70044,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2446), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [623] = { + [628] = { [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(634), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1664), + [sym__type] = STATE(1885), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69152,7 +70067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1684), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -69162,9 +70077,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69185,7 +70100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69196,21 +70111,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [624] = { + [629] = { [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), + [sym__type] = STATE(1678), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69230,9 +70146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2454), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69252,7 +70167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69267,17 +70182,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [625] = { + [630] = { [sym_function_modifiers] = STATE(2404), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), + [sym__type] = STATE(2172), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69297,9 +70213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2280), [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2456), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69319,7 +70234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69334,18 +70249,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [626] = { + [631] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1044), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [632] = { [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(691), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1627), + [sym__type] = STATE(1670), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69353,7 +70335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1628), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -69363,9 +70345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1518), + [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69386,7 +70368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69397,22 +70379,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, - [627] = { + [633] = { [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(636), [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1621), + [sym__type] = STATE(1394), [sym_bracketed_type] = STATE(2347), [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), @@ -69420,7 +70402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1630), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -69430,9 +70412,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1522), + [sym_scoped_type_identifier] = STATE(1333), [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69453,7 +70435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2243), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69464,10667 +70446,6995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(2460), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [634] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1666), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1665), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1490), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1885), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1678), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2172), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1044), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1670), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [645] = 33, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2462), 1, - sym_self, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1394), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1392), 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(892), 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, - [776] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1490), 1, - sym_scoped_type_identifier, - STATE(1665), 1, - sym_generic_type, - STATE(1666), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [905] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1900), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1034] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2466), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1523), 1, - sym_scoped_type_identifier, - STATE(1617), 1, - sym__type, - STATE(1623), 1, - sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1163] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1393), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1292] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1890), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1421] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1945), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1550] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1986), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1679] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2162), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1808] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1778), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [1937] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2087), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2066] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2120), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2195] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1954), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2324] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2003), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2453] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1654), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2582] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1649), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2711] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1394), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2840] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1400), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [2969] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1626), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3098] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2046), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3227] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1809), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3356] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1928), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3485] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1625), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3614] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1811), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3743] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1841), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [3872] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1402), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4001] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1398), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4130] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1399), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4259] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1840), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4388] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2016), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4517] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2074), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4646] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1174), 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(1176), 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, - [4717] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1080), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [4846] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2468), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1519), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym__type, - STATE(1635), 1, - sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [4975] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2309), 1, - sym__type, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5104] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1396), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5233] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1999), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5362] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1674), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5491] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2106), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5620] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1971), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5749] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2075), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [5878] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1618), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6007] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1401), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6136] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1698), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6265] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1868), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6394] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1888), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6523] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2105), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6652] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2121), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6781] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2030), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [6910] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2012), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [7039] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1109), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [7168] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1125), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [7297] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1124), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [7426] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1847), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [7555] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2156), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [7684] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1865), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [7813] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1677), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [7942] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2180), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8071] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2470), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1498), 1, - sym_scoped_type_identifier, - STATE(1650), 1, - sym__type, - STATE(1651), 1, - sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8200] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2183), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8329] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1699), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8458] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1689), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8587] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2208), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8716] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1104), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [8845] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1672), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [8974] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1914), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [9103] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1067), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [9232] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1031), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [9361] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2092), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [9490] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1603), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [9619] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1693), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [9748] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1049), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [9877] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2141), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10006] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1643), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10135] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1925), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10264] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2203), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10393] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2041), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10522] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1685), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [10651] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1038), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [10780] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1644), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2213), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11038] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1802), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11167] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1376), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11296] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2214), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11425] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1690), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11554] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1376), 1, - sym__type, - STATE(1387), 1, - sym_lifetime, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11683] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1582), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11812] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1694), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [11941] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1634), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12070] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2273), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12199] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1631), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12328] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2079), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12457] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1040), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [12586] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1655), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12715] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1638), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12844] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1380), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [12973] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1640), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1383), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13231] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2205), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13360] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1682), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13489] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1695), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13618] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1691), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13747] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1877), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [13876] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1656), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(892), 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, - [14005] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1065), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 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(2381), 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, - [14134] = 3, - ACTIONS(3), 2, + [635] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1900), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [636] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1617), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1623), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1523), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [637] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [638] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1890), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [639] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1945), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [640] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [641] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2162), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [642] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1778), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [643] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [644] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2120), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [645] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1954), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [646] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [647] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1654), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [648] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1649), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [649] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [650] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [651] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1626), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [652] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2046), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [653] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [654] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1928), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [655] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1625), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [656] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [657] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1841), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [658] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [659] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [660] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [661] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [662] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [663] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [664] = { + [sym_identifier] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_async] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_loop] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_unsafe] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_ref] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1172), + [anon_sym__] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [sym_mutable_specifier] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_move] = ACTIONS(1174), + [sym_integer_literal] = ACTIONS(1172), + [aux_sym_string_literal_token1] = ACTIONS(1172), + [sym_char_literal] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_self] = ACTIONS(1174), + [sym_super] = ACTIONS(1174), + [sym_crate] = ACTIONS(1174), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1172), + [sym_float_literal] = ACTIONS(1172), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [665] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1080), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [666] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1624), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1635), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1519), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [667] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [668] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1396), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [669] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1999), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [670] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1674), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [671] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2106), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [672] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1971), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [673] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [674] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1618), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [675] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1401), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [676] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1698), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [677] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1868), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [678] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1888), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [679] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2105), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [680] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [681] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2030), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [682] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [683] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1109), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [684] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1125), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [685] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1124), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [686] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1847), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [687] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2156), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [688] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1865), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [689] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1677), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [690] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2180), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [691] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1650), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1651), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1498), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [692] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2183), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [693] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1699), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [694] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1689), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [695] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [696] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1104), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [697] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1672), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [698] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1914), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [699] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1067), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [700] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1031), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [701] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2092), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [702] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1603), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [703] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1693), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [704] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1049), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [705] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2141), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [706] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1643), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [707] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [708] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2203), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [709] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [710] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1685), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [711] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1038), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [712] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1644), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [713] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2213), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [714] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [715] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1376), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [716] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2214), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [717] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1690), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [718] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1376), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1387), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [719] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1582), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [720] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1694), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [721] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1634), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [722] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2273), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [723] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1631), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [724] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [725] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1040), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [726] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1655), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [727] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1638), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [728] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1380), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [729] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1640), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [730] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [731] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2205), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [732] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1682), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [733] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1695), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [734] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1691), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [735] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [736] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1656), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, + [737] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1065), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2377), + [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), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_dyn] = ACTIONS(2395), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [sym_doc_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2474), 17, + sym_doc_comment, + ACTIONS(2472), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80142,7 +77452,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2472), 40, + ACTIONS(2470), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80183,10 +77493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14200] = 3, - ACTIONS(3), 2, + [67] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, @@ -80246,11 +77557,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14266] = 3, - ACTIONS(3), 2, + [134] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2478), 17, + sym_doc_comment, + ACTIONS(2476), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80268,7 +77580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2476), 40, + ACTIONS(2474), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80309,10 +77621,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14332] = 3, - ACTIONS(3), 2, + [201] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(396), 18, sym_raw_string_literal, sym_float_literal, @@ -80332,7 +77645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2480), 39, + ACTIONS(2478), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80372,11 +77685,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14398] = 3, - ACTIONS(3), 2, + [268] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1174), 15, + sym_doc_comment, + ACTIONS(1172), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80392,7 +77706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80431,23 +77745,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14460] = 9, - ACTIONS(2484), 1, + [331] = 9, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2486), 1, anon_sym_BANG, - ACTIONS(2490), 1, + ACTIONS(2488), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(851), 1, sym_type_arguments, STATE(884), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2486), 17, + sym_doc_comment, + ACTIONS(2484), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80465,7 +77780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2482), 26, + ACTIONS(2480), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80492,21 +77807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14530] = 8, - ACTIONS(2484), 1, + [402] = 8, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2488), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(851), 1, sym_type_arguments, STATE(884), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2496), 17, + sym_doc_comment, + ACTIONS(2494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80524,7 +77840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2494), 26, + ACTIONS(2492), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80551,21 +77867,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14597] = 8, - ACTIONS(2484), 1, + [470] = 8, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2488), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(851), 1, sym_type_arguments, STATE(884), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2500), 17, + sym_doc_comment, + ACTIONS(2498), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80583,7 +77900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2498), 26, + ACTIONS(2496), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80610,11 +77927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 3, - ACTIONS(3), 2, + [538] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1872), 9, + sym_doc_comment, + ACTIONS(1870), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80624,7 +77942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80663,19 +77981,20 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14720] = 7, - ACTIONS(2484), 1, + [595] = 7, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(855), 1, sym_type_arguments, STATE(907), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2504), 17, + sym_doc_comment, + ACTIONS(2502), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80693,7 +78012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2502), 26, + ACTIONS(2500), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80720,19 +78039,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14784] = 7, - ACTIONS(2484), 1, + [660] = 7, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(855), 1, sym_type_arguments, STATE(907), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2508), 17, + sym_doc_comment, + ACTIONS(2506), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80750,7 +78070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2506), 26, + ACTIONS(2504), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80777,15 +78097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14848] = 5, - ACTIONS(2514), 1, + [725] = 5, + ACTIONS(2512), 1, anon_sym_BANG, - ACTIONS(2516), 1, + ACTIONS(2514), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2512), 17, + sym_doc_comment, + ACTIONS(2510), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80803,7 +78124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2510), 28, + ACTIONS(2508), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80832,15 +78153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14908] = 5, - ACTIONS(2522), 1, + [786] = 5, + ACTIONS(2520), 1, anon_sym_BANG, - ACTIONS(2524), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2520), 17, + sym_doc_comment, + ACTIONS(2518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80858,7 +78180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2518), 28, + ACTIONS(2516), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80887,15 +78209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14968] = 5, - ACTIONS(2530), 1, + [847] = 5, + ACTIONS(2528), 1, anon_sym_BANG, - ACTIONS(2532), 1, + ACTIONS(2530), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2528), 17, + sym_doc_comment, + ACTIONS(2526), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80913,7 +78236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2526), 28, + ACTIONS(2524), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80942,22 +78265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15028] = 6, - ACTIONS(2540), 1, + [908] = 6, + ACTIONS(2538), 1, anon_sym_BANG, - ACTIONS(2542), 1, + ACTIONS(2540), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(2536), 16, + ACTIONS(2534), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -80974,7 +78298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(2532), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -80998,19 +78322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15090] = 7, - ACTIONS(2484), 1, + [971] = 7, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2490), 1, anon_sym_LT2, STATE(855), 1, sym_type_arguments, STATE(907), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2546), 17, + sym_doc_comment, + ACTIONS(2544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81028,7 +78353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2544), 26, + ACTIONS(2542), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81055,11 +78380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15154] = 3, - ACTIONS(3), 2, + [1036] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1756), 9, + sym_doc_comment, + ACTIONS(1754), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81069,7 +78395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81108,11 +78434,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15210] = 3, - ACTIONS(3), 2, + [1093] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1656), 9, + sym_doc_comment, + ACTIONS(1654), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81122,7 +78449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81161,18 +78488,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15266] = 7, - ACTIONS(2488), 1, + [1150] = 7, + ACTIONS(2486), 1, anon_sym_BANG, - ACTIONS(2548), 1, + ACTIONS(2546), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2548), 1, anon_sym_COLON_COLON, STATE(1094), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -81218,15 +78546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15330] = 5, - ACTIONS(2556), 1, + [1215] = 5, + ACTIONS(2554), 1, anon_sym_BANG, - ACTIONS(2558), 1, + ACTIONS(2556), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2554), 17, + sym_doc_comment, + ACTIONS(2552), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81244,7 +78573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2552), 28, + ACTIONS(2550), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81273,11 +78602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15390] = 3, - ACTIONS(3), 2, + [1276] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1836), 9, + sym_doc_comment, + ACTIONS(1834), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81287,7 +78617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81326,11 +78656,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15446] = 3, - ACTIONS(3), 2, + [1333] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1832), 9, + sym_doc_comment, + ACTIONS(1830), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81340,7 +78671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81379,14 +78710,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15502] = 5, - ACTIONS(2560), 1, + [1390] = 5, + ACTIONS(2558), 1, anon_sym_else, STATE(1035), 1, sym_else_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(498), 15, anon_sym_PLUS, anon_sym_STAR, @@ -81433,13 +78765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15561] = 4, - ACTIONS(2562), 1, + [1450] = 4, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + sym_doc_comment, + ACTIONS(2554), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81456,7 +78789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2558), 29, + ACTIONS(2556), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81486,13 +78819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 4, - ACTIONS(2564), 1, + [1508] = 4, + ACTIONS(2562), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + sym_doc_comment, + ACTIONS(2512), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81509,7 +78843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 29, + ACTIONS(2514), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81539,15 +78873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15675] = 5, - ACTIONS(2570), 1, + [1566] = 5, + ACTIONS(2568), 1, anon_sym_SQUOTE, STATE(1066), 1, sym_loop_label, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2568), 15, + sym_doc_comment, + ACTIONS(2566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81563,7 +78898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(2564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81593,13 +78928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 4, - ACTIONS(2572), 1, + [1626] = 4, + ACTIONS(2570), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, + sym_doc_comment, + ACTIONS(2520), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81616,7 +78952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(2522), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81646,14 +78982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15791] = 5, - ACTIONS(2560), 1, + [1684] = 5, + ACTIONS(2558), 1, anon_sym_else, STATE(1082), 1, sym_else_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(490), 15, anon_sym_PLUS, anon_sym_STAR, @@ -81700,11 +79037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15850] = 3, - ACTIONS(3), 2, + [1744] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + sym_doc_comment, + ACTIONS(2512), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81721,7 +79059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 30, + ACTIONS(2514), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81752,13 +79090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2574), 1, + [1800] = 4, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + sym_doc_comment, + ACTIONS(2528), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81775,7 +79114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 29, + ACTIONS(2530), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81805,11 +79144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15962] = 3, - ACTIONS(3), 2, + [1858] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + sym_doc_comment, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81817,7 +79157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81856,11 +79196,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16016] = 3, - ACTIONS(3), 2, + [1913] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + sym_doc_comment, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81868,7 +79209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81907,11 +79248,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16070] = 3, - ACTIONS(3), 2, + [1968] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + sym_doc_comment, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81919,7 +79261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81958,11 +79300,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16124] = 3, - ACTIONS(3), 2, + [2023] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + sym_doc_comment, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81970,7 +79313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82009,15 +79352,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16178] = 5, - ACTIONS(2578), 1, + [2078] = 5, + ACTIONS(2576), 1, anon_sym_LPAREN, STATE(1098), 1, sym_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + sym_doc_comment, + ACTIONS(2578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82033,7 +79377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 28, + ACTIONS(2574), 28, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82062,12 +79406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16236] = 4, - ACTIONS(2582), 1, + [2137] = 4, + ACTIONS(2580), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -82114,11 +79459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16292] = 3, - ACTIONS(3), 2, + [2194] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + sym_doc_comment, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82126,7 +79472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82165,11 +79511,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16346] = 3, - ACTIONS(3), 2, + [2249] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + sym_doc_comment, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82177,7 +79524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82216,11 +79563,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16400] = 3, - ACTIONS(3), 2, + [2304] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + sym_doc_comment, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82228,7 +79576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82267,11 +79615,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16454] = 3, - ACTIONS(3), 2, + [2359] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + sym_doc_comment, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82279,7 +79628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82318,11 +79667,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16508] = 3, - ACTIONS(3), 2, + [2414] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + sym_doc_comment, + ACTIONS(2584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82338,7 +79688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2582), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82369,11 +79719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16562] = 3, - ACTIONS(3), 2, + [2469] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + sym_doc_comment, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82381,7 +79732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82420,11 +79771,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16616] = 3, - ACTIONS(3), 2, + [2524] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + sym_doc_comment, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82432,7 +79784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82471,11 +79823,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16670] = 3, - ACTIONS(3), 2, + [2579] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + sym_doc_comment, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82483,7 +79836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82522,11 +79875,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16724] = 3, - ACTIONS(3), 2, + [2634] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + sym_doc_comment, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82534,7 +79888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82573,11 +79927,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16778] = 3, - ACTIONS(3), 2, + [2689] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + sym_doc_comment, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82585,7 +79940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82624,11 +79979,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16832] = 3, - ACTIONS(3), 2, + [2744] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + sym_doc_comment, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82636,7 +79992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82675,11 +80031,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16886] = 3, - ACTIONS(3), 2, + [2799] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + sym_doc_comment, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82687,7 +80044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82726,11 +80083,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16940] = 3, - ACTIONS(3), 2, + [2854] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + sym_doc_comment, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82746,7 +80104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 30, + ACTIONS(2586), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82777,11 +80135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16994] = 3, - ACTIONS(3), 2, + [2909] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + sym_doc_comment, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82789,7 +80148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82828,11 +80187,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17048] = 3, - ACTIONS(3), 2, + [2964] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + sym_doc_comment, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82840,7 +80200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82879,11 +80239,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17102] = 3, - ACTIONS(3), 2, + [3019] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + sym_doc_comment, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82891,7 +80252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82930,15 +80291,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17156] = 5, - ACTIONS(2542), 1, + [3074] = 5, + ACTIONS(2540), 1, anon_sym_COLON_COLON, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + sym_doc_comment, + ACTIONS(2534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82954,7 +80316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 28, + ACTIONS(2532), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82983,11 +80345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17214] = 3, - ACTIONS(3), 2, + [3133] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + sym_doc_comment, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82995,7 +80358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83034,10 +80397,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17268] = 3, - ACTIONS(3), 2, + [3188] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(848), 15, anon_sym_PLUS, anon_sym_STAR, @@ -83085,11 +80449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17322] = 3, - ACTIONS(3), 2, + [3243] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + sym_doc_comment, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83097,7 +80462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83136,11 +80501,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17376] = 3, - ACTIONS(3), 2, + [3298] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + sym_doc_comment, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83148,7 +80514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83187,11 +80553,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17430] = 3, - ACTIONS(3), 2, + [3353] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + sym_doc_comment, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83199,7 +80566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83238,11 +80605,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17484] = 3, - ACTIONS(3), 2, + [3408] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + sym_doc_comment, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83250,7 +80618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83289,11 +80657,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17538] = 3, - ACTIONS(3), 2, + [3463] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + sym_doc_comment, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83301,7 +80670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83340,11 +80709,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17592] = 3, - ACTIONS(3), 2, + [3518] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + sym_doc_comment, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83352,7 +80722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83391,14 +80761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17646] = 5, - ACTIONS(2488), 1, + [3573] = 5, + ACTIONS(2486), 1, anon_sym_BANG, - ACTIONS(2594), 1, + ACTIONS(2592), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -83444,11 +80815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17704] = 3, - ACTIONS(3), 2, + [3632] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, + sym_doc_comment, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83456,7 +80828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83495,11 +80867,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17758] = 3, - ACTIONS(3), 2, + [3687] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + sym_doc_comment, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83507,7 +80880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83546,11 +80919,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17812] = 3, - ACTIONS(3), 2, + [3742] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + sym_doc_comment, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83558,7 +80932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83597,10 +80971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17866] = 3, - ACTIONS(3), 2, + [3797] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(532), 15, anon_sym_PLUS, anon_sym_STAR, @@ -83648,13 +81023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_else, - [17920] = 4, - ACTIONS(2596), 1, + [3852] = 4, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + sym_doc_comment, + ACTIONS(2544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83670,7 +81046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83700,11 +81076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17976] = 3, - ACTIONS(3), 2, + [3909] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + sym_doc_comment, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83712,7 +81089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83751,13 +81128,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18030] = 4, - ACTIONS(2598), 1, + [3964] = 4, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + sym_doc_comment, + ACTIONS(2544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83773,7 +81151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83803,11 +81181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18086] = 3, - ACTIONS(3), 2, + [4021] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, + sym_doc_comment, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83815,7 +81194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83854,13 +81233,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18140] = 4, - ACTIONS(2600), 1, + [4076] = 4, + ACTIONS(2598), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + sym_doc_comment, + ACTIONS(2544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83876,7 +81256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83906,11 +81286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18196] = 3, - ACTIONS(3), 2, + [4133] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + sym_doc_comment, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83918,7 +81299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83957,11 +81338,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18250] = 3, - ACTIONS(3), 2, + [4188] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + sym_doc_comment, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83969,7 +81351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84008,11 +81390,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18304] = 3, - ACTIONS(3), 2, + [4243] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + sym_doc_comment, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84020,7 +81403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84059,11 +81442,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18358] = 3, - ACTIONS(3), 2, + [4298] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + sym_doc_comment, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84071,7 +81455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84110,11 +81494,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18412] = 3, - ACTIONS(3), 2, + [4353] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + sym_doc_comment, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84122,7 +81507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84161,11 +81546,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18466] = 3, - ACTIONS(3), 2, + [4408] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + sym_doc_comment, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84173,7 +81559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84212,11 +81598,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18520] = 3, - ACTIONS(3), 2, + [4463] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + sym_doc_comment, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84224,7 +81611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84263,11 +81650,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18574] = 3, - ACTIONS(3), 2, + [4518] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + sym_doc_comment, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84275,7 +81663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84314,11 +81702,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18628] = 3, - ACTIONS(3), 2, + [4573] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + sym_doc_comment, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84326,7 +81715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84365,11 +81754,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18682] = 3, - ACTIONS(3), 2, + [4628] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + sym_doc_comment, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84377,7 +81767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84416,11 +81806,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18736] = 3, - ACTIONS(3), 2, + [4683] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + sym_doc_comment, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84428,7 +81819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84467,11 +81858,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18790] = 3, - ACTIONS(3), 2, + [4738] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + sym_doc_comment, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84479,7 +81871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84518,11 +81910,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, - ACTIONS(3), 2, + [4793] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + sym_doc_comment, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84530,7 +81923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84569,10 +81962,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 3, - ACTIONS(3), 2, + [4848] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -84620,11 +82014,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18952] = 3, - ACTIONS(3), 2, + [4903] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + sym_doc_comment, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84632,7 +82027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84671,11 +82066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19006] = 3, - ACTIONS(3), 2, + [4958] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + sym_doc_comment, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84683,7 +82079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84722,11 +82118,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19060] = 3, - ACTIONS(3), 2, + [5013] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + sym_doc_comment, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84734,7 +82131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84773,10 +82170,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19114] = 3, - ACTIONS(3), 2, + [5068] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -84824,10 +82222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19168] = 3, - ACTIONS(3), 2, + [5123] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -84875,10 +82274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19222] = 3, - ACTIONS(3), 2, + [5178] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -84926,10 +82326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19276] = 3, - ACTIONS(3), 2, + [5233] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -84977,11 +82378,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19330] = 3, - ACTIONS(3), 2, + [5288] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + sym_doc_comment, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84989,7 +82391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85028,14 +82430,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19384] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2604), 2, + [5343] = 4, + ACTIONS(2602), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85051,7 +82454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(2600), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85080,11 +82483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19440] = 3, - ACTIONS(3), 2, + [5400] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + sym_doc_comment, + ACTIONS(1172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85092,7 +82496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85131,10 +82535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19494] = 3, - ACTIONS(3), 2, + [5455] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -85182,10 +82587,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19548] = 3, - ACTIONS(3), 2, + [5510] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -85233,11 +82639,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19602] = 3, - ACTIONS(3), 2, + [5565] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2004), 7, + sym_doc_comment, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85245,7 +82652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2006), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85284,11 +82691,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19656] = 3, - ACTIONS(3), 2, + [5620] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2000), 7, + sym_doc_comment, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85296,7 +82704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85335,11 +82743,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19710] = 3, - ACTIONS(3), 2, + [5675] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + sym_doc_comment, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85347,7 +82756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85386,10 +82795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19764] = 3, - ACTIONS(3), 2, + [5730] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(542), 15, anon_sym_PLUS, anon_sym_STAR, @@ -85437,11 +82847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_else, - [19818] = 3, - ACTIONS(3), 2, + [5785] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + sym_doc_comment, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85449,7 +82860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85488,11 +82899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19872] = 3, - ACTIONS(3), 2, + [5840] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + sym_doc_comment, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85500,7 +82912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85539,11 +82951,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19926] = 3, - ACTIONS(3), 2, + [5895] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + sym_doc_comment, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85551,7 +82964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85590,11 +83003,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19980] = 3, - ACTIONS(3), 2, + [5950] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + sym_doc_comment, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85602,7 +83016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85641,11 +83055,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20034] = 3, - ACTIONS(3), 2, + [6005] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + sym_doc_comment, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85653,7 +83068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85692,11 +83107,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20088] = 3, - ACTIONS(3), 2, + [6060] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + sym_doc_comment, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85704,7 +83120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85743,11 +83159,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20142] = 3, - ACTIONS(3), 2, + [6115] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + sym_doc_comment, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85755,7 +83172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85794,11 +83211,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20196] = 3, - ACTIONS(3), 2, + [6170] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + sym_doc_comment, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85806,7 +83224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85845,11 +83263,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20250] = 3, - ACTIONS(3), 2, + [6225] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + sym_doc_comment, + ACTIONS(1180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85857,7 +83276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85896,11 +83315,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20304] = 3, - ACTIONS(3), 2, + [6280] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2610), 15, + sym_doc_comment, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85916,7 +83336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 30, + ACTIONS(2606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85947,11 +83367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20358] = 3, - ACTIONS(3), 2, + [6335] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + sym_doc_comment, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85959,7 +83380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85998,11 +83419,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20412] = 3, - ACTIONS(3), 2, + [6390] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2614), 15, + sym_doc_comment, + ACTIONS(2612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86018,7 +83440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 30, + ACTIONS(2610), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86049,11 +83471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20466] = 3, - ACTIONS(3), 2, + [6445] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2618), 15, + sym_doc_comment, + ACTIONS(2616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86069,7 +83492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2614), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86100,11 +83523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20520] = 3, - ACTIONS(3), 2, + [6500] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + sym_doc_comment, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86112,7 +83536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86151,11 +83575,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20574] = 3, - ACTIONS(3), 2, + [6555] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + sym_doc_comment, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86163,7 +83588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86202,11 +83627,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20628] = 3, - ACTIONS(3), 2, + [6610] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + sym_doc_comment, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86214,7 +83640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86253,11 +83679,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20682] = 3, - ACTIONS(3), 2, + [6665] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + sym_doc_comment, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86273,7 +83700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 30, + ACTIONS(2618), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86304,11 +83731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20736] = 3, - ACTIONS(3), 2, + [6720] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + sym_doc_comment, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86316,7 +83744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86355,13 +83783,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20790] = 4, - ACTIONS(2628), 1, + [6775] = 4, + ACTIONS(2626), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2626), 15, + sym_doc_comment, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86377,7 +83806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86407,11 +83836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20846] = 3, - ACTIONS(3), 2, + [6832] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + sym_doc_comment, + ACTIONS(1096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86419,7 +83849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1098), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86458,11 +83888,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20900] = 3, - ACTIONS(3), 2, + [6887] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + sym_doc_comment, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86470,7 +83901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86509,11 +83940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20954] = 3, - ACTIONS(3), 2, + [6942] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + sym_doc_comment, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86521,7 +83953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86560,11 +83992,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21008] = 3, - ACTIONS(3), 2, + [6997] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + sym_doc_comment, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86572,7 +84005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86611,11 +84044,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21062] = 3, - ACTIONS(3), 2, + [7052] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + sym_doc_comment, + ACTIONS(1092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86623,7 +84057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1094), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86662,11 +84096,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21116] = 3, - ACTIONS(3), 2, + [7107] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + sym_doc_comment, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86674,7 +84109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86713,11 +84148,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21170] = 3, - ACTIONS(3), 2, + [7162] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + sym_doc_comment, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86725,7 +84161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86764,13 +84200,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21224] = 4, - ACTIONS(2634), 1, + [7217] = 4, + ACTIONS(2632), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + sym_doc_comment, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86786,7 +84223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(2628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86816,14 +84253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21280] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2636), 2, + [7274] = 4, + ACTIONS(2634), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86839,7 +84277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(2600), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86868,11 +84306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21336] = 3, - ACTIONS(3), 2, + [7331] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + sym_doc_comment, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86880,7 +84319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86919,11 +84358,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21390] = 3, - ACTIONS(3), 2, + [7386] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + sym_doc_comment, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86931,7 +84371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86970,11 +84410,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21444] = 3, - ACTIONS(3), 2, + [7441] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + sym_doc_comment, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86982,7 +84423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87021,11 +84462,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21498] = 3, - ACTIONS(3), 2, + [7496] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + sym_doc_comment, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87033,7 +84475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87072,11 +84514,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21552] = 3, - ACTIONS(3), 2, + [7551] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + sym_doc_comment, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87084,7 +84527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87123,13 +84566,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21606] = 4, - ACTIONS(2600), 1, + [7606] = 4, + ACTIONS(2598), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + sym_doc_comment, + ACTIONS(2506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87145,7 +84589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 29, + ACTIONS(2504), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87175,11 +84619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21662] = 3, - ACTIONS(3), 2, + [7663] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + sym_doc_comment, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87187,7 +84632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87226,11 +84671,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21716] = 3, - ACTIONS(3), 2, + [7718] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + sym_doc_comment, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87238,7 +84684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87277,11 +84723,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21770] = 3, - ACTIONS(3), 2, + [7773] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + sym_doc_comment, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87289,7 +84736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87328,11 +84775,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21824] = 3, - ACTIONS(3), 2, + [7828] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + sym_doc_comment, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87340,7 +84788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87379,11 +84827,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21878] = 3, - ACTIONS(3), 2, + [7883] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + sym_doc_comment, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87391,7 +84840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87430,11 +84879,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21932] = 3, - ACTIONS(3), 2, + [7938] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + sym_doc_comment, + ACTIONS(1124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87442,7 +84892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1126), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87481,11 +84931,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21986] = 3, - ACTIONS(3), 2, + [7993] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + sym_doc_comment, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87493,7 +84944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87532,13 +84983,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22040] = 4, - ACTIONS(2600), 1, + [8048] = 4, + ACTIONS(2598), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + sym_doc_comment, + ACTIONS(2502), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87554,7 +85006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87584,11 +85036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22096] = 3, - ACTIONS(3), 2, + [8105] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + sym_doc_comment, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87596,7 +85049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87635,11 +85088,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22150] = 3, - ACTIONS(3), 2, + [8160] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + sym_doc_comment, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87647,7 +85101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87686,11 +85140,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22204] = 3, - ACTIONS(3), 2, + [8215] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + sym_doc_comment, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87698,7 +85153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87737,13 +85192,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22258] = 4, - ACTIONS(2642), 1, + [8270] = 4, + ACTIONS(2640), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + sym_doc_comment, + ACTIONS(2638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87759,7 +85215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87789,11 +85245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22314] = 3, - ACTIONS(3), 2, + [8327] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + sym_doc_comment, + ACTIONS(1168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87801,7 +85258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87840,11 +85297,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22368] = 3, - ACTIONS(3), 2, + [8382] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2646), 15, + sym_doc_comment, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87860,7 +85318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2644), 30, + ACTIONS(2642), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87891,11 +85349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22422] = 3, - ACTIONS(3), 2, + [8437] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + sym_doc_comment, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87903,7 +85362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87942,11 +85401,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22476] = 3, - ACTIONS(3), 2, + [8492] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + sym_doc_comment, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87954,7 +85414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87993,11 +85453,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22530] = 3, - ACTIONS(3), 2, + [8547] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + sym_doc_comment, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88005,7 +85466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88044,11 +85505,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22584] = 3, - ACTIONS(3), 2, + [8602] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + sym_doc_comment, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88056,7 +85518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88095,11 +85557,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22638] = 3, - ACTIONS(3), 2, + [8657] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + sym_doc_comment, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88107,7 +85570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88146,11 +85609,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22692] = 3, - ACTIONS(3), 2, + [8712] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + sym_doc_comment, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88158,7 +85622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88197,11 +85661,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22746] = 3, - ACTIONS(3), 2, + [8767] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + sym_doc_comment, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88209,7 +85674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88248,11 +85713,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22800] = 3, - ACTIONS(3), 2, + [8822] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + sym_doc_comment, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88260,7 +85726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88299,11 +85765,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22854] = 3, - ACTIONS(3), 2, + [8877] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + sym_doc_comment, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88311,7 +85778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88350,11 +85817,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22908] = 3, - ACTIONS(3), 2, + [8932] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2650), 15, + sym_doc_comment, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88370,7 +85838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2648), 30, + ACTIONS(2646), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88401,11 +85869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22962] = 3, - ACTIONS(3), 2, + [8987] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + sym_doc_comment, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88413,7 +85882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88452,11 +85921,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23016] = 3, - ACTIONS(3), 2, + [9042] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + sym_doc_comment, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88464,7 +85934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88503,11 +85973,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23070] = 3, - ACTIONS(3), 2, + [9097] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + sym_doc_comment, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88515,7 +85986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88554,11 +86025,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23124] = 3, - ACTIONS(3), 2, + [9152] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + sym_doc_comment, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88566,7 +86038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88605,11 +86077,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23178] = 3, - ACTIONS(3), 2, + [9207] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + sym_doc_comment, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88617,7 +86090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88656,11 +86129,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23232] = 3, - ACTIONS(3), 2, + [9262] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + sym_doc_comment, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88668,7 +86142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88707,11 +86181,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23286] = 3, - ACTIONS(3), 2, + [9317] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + sym_doc_comment, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88719,7 +86194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88758,11 +86233,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23340] = 3, - ACTIONS(3), 2, + [9372] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + sym_doc_comment, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88770,7 +86246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88809,11 +86285,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23394] = 3, - ACTIONS(3), 2, + [9427] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + sym_doc_comment, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88821,7 +86298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88860,11 +86337,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23448] = 3, - ACTIONS(3), 2, + [9482] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + sym_doc_comment, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88872,7 +86350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88911,13 +86389,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23502] = 4, - ACTIONS(2656), 1, + [9537] = 4, + ACTIONS(2654), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + sym_doc_comment, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88933,7 +86412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 29, + ACTIONS(2650), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88963,11 +86442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23558] = 3, - ACTIONS(3), 2, + [9594] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + sym_doc_comment, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88975,7 +86455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89014,11 +86494,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23612] = 3, - ACTIONS(3), 2, + [9649] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + sym_doc_comment, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89026,7 +86507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89065,11 +86546,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23666] = 3, - ACTIONS(3), 2, + [9704] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + sym_doc_comment, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89077,7 +86559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89116,11 +86598,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23720] = 3, - ACTIONS(3), 2, + [9759] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + sym_doc_comment, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89128,7 +86611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89167,11 +86650,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23774] = 3, - ACTIONS(3), 2, + [9814] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + sym_doc_comment, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89179,7 +86663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89218,11 +86702,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23828] = 3, - ACTIONS(3), 2, + [9869] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + sym_doc_comment, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89230,7 +86715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89269,11 +86754,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23882] = 3, - ACTIONS(3), 2, + [9924] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + sym_doc_comment, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89281,7 +86767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89320,11 +86806,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23936] = 3, - ACTIONS(3), 2, + [9979] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + sym_doc_comment, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89332,7 +86819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89371,11 +86858,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23990] = 3, - ACTIONS(3), 2, + [10034] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + sym_doc_comment, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89383,7 +86871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89422,11 +86910,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24044] = 3, - ACTIONS(3), 2, + [10089] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + sym_doc_comment, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89434,7 +86923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89473,11 +86962,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24098] = 3, - ACTIONS(3), 2, + [10144] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + sym_doc_comment, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89485,7 +86975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89524,11 +87014,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24152] = 3, - ACTIONS(3), 2, + [10199] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + sym_doc_comment, + ACTIONS(1164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89536,7 +87027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89575,11 +87066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24206] = 3, - ACTIONS(3), 2, + [10254] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + sym_doc_comment, + ACTIONS(1144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89587,7 +87079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1146), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89626,11 +87118,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24260] = 3, - ACTIONS(3), 2, + [10309] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + sym_doc_comment, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89638,7 +87131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89677,11 +87170,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24314] = 3, - ACTIONS(3), 2, + [10364] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + sym_doc_comment, + ACTIONS(1136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89689,7 +87183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1138), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89728,11 +87222,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24368] = 3, - ACTIONS(3), 2, + [10419] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + sym_doc_comment, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89740,7 +87235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89779,11 +87274,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24422] = 3, - ACTIONS(3), 2, + [10474] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + sym_doc_comment, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89791,7 +87287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89830,11 +87326,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24476] = 3, - ACTIONS(3), 2, + [10529] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + sym_doc_comment, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89842,7 +87339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89881,11 +87378,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24530] = 3, - ACTIONS(3), 2, + [10584] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + sym_doc_comment, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89893,7 +87391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89932,11 +87430,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 3, - ACTIONS(3), 2, + [10639] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + sym_doc_comment, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89944,7 +87443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89983,11 +87482,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24638] = 3, - ACTIONS(3), 2, + [10694] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + sym_doc_comment, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89995,7 +87495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90034,11 +87534,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24692] = 3, - ACTIONS(3), 2, + [10749] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + sym_doc_comment, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90046,7 +87547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90085,11 +87586,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24746] = 3, - ACTIONS(3), 2, + [10804] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + sym_doc_comment, + ACTIONS(1148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90097,7 +87599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1150), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90136,11 +87638,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24800] = 3, - ACTIONS(3), 2, + [10859] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + sym_doc_comment, + ACTIONS(2658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90156,7 +87659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2656), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90187,11 +87690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24854] = 3, - ACTIONS(3), 2, + [10914] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + sym_doc_comment, + ACTIONS(1112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90199,7 +87703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1114), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90238,11 +87742,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24908] = 3, - ACTIONS(3), 2, + [10969] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + sym_doc_comment, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90250,7 +87755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90289,11 +87794,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24962] = 3, - ACTIONS(3), 2, + [11024] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + sym_doc_comment, + ACTIONS(1100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90301,7 +87807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1102), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90340,11 +87846,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25016] = 3, - ACTIONS(3), 2, + [11079] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + sym_doc_comment, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90352,7 +87859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90391,11 +87898,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25070] = 3, - ACTIONS(3), 2, + [11134] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + sym_doc_comment, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90403,7 +87911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90442,11 +87950,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25124] = 3, - ACTIONS(3), 2, + [11189] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + sym_doc_comment, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90454,7 +87963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90493,11 +88002,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25178] = 3, - ACTIONS(3), 2, + [11244] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + sym_doc_comment, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90505,7 +88015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90544,11 +88054,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25232] = 3, - ACTIONS(3), 2, + [11299] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + sym_doc_comment, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90556,7 +88067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90595,11 +88106,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25286] = 3, - ACTIONS(3), 2, + [11354] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + sym_doc_comment, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90607,7 +88119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90646,11 +88158,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25340] = 3, - ACTIONS(3), 2, + [11409] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + sym_doc_comment, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90658,7 +88171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90697,11 +88210,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25394] = 3, - ACTIONS(3), 2, + [11464] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + sym_doc_comment, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90709,7 +88223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90748,11 +88262,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25448] = 3, - ACTIONS(3), 2, + [11519] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + sym_doc_comment, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90760,7 +88275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90799,11 +88314,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25502] = 3, - ACTIONS(3), 2, + [11574] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + sym_doc_comment, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90811,7 +88327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90850,11 +88366,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25556] = 3, - ACTIONS(3), 2, + [11629] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + sym_doc_comment, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90862,7 +88379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90901,11 +88418,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25610] = 3, - ACTIONS(3), 2, + [11684] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + sym_doc_comment, + ACTIONS(2662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90921,7 +88439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2662), 30, + ACTIONS(2660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90952,11 +88470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25664] = 3, - ACTIONS(3), 2, + [11739] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + sym_doc_comment, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90964,7 +88483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91003,11 +88522,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25718] = 3, - ACTIONS(3), 2, + [11794] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + sym_doc_comment, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91015,7 +88535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91054,11 +88574,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25772] = 3, - ACTIONS(3), 2, + [11849] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + sym_doc_comment, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91066,7 +88587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91105,11 +88626,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25826] = 3, - ACTIONS(3), 2, + [11904] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + sym_doc_comment, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91117,7 +88639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91156,11 +88678,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25880] = 3, - ACTIONS(3), 2, + [11959] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + sym_doc_comment, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91168,7 +88691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91207,11 +88730,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25934] = 3, - ACTIONS(3), 2, + [12014] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + sym_doc_comment, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91219,7 +88743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91258,11 +88782,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25988] = 3, - ACTIONS(3), 2, + [12069] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + sym_doc_comment, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91270,7 +88795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91309,11 +88834,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26042] = 3, - ACTIONS(3), 2, + [12124] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + sym_doc_comment, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91321,7 +88847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91360,11 +88886,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26096] = 3, - ACTIONS(3), 2, + [12179] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + sym_doc_comment, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91372,7 +88899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91411,11 +88938,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26150] = 3, - ACTIONS(3), 2, + [12234] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + sym_doc_comment, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91423,7 +88951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91462,11 +88990,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26204] = 3, - ACTIONS(3), 2, + [12289] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + sym_doc_comment, + ACTIONS(1486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91474,7 +89003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91513,11 +89042,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26258] = 3, - ACTIONS(3), 2, + [12344] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + sym_doc_comment, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91525,7 +89055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91564,11 +89094,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26312] = 3, - ACTIONS(3), 2, + [12399] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + sym_doc_comment, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91576,7 +89107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91615,11 +89146,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26366] = 3, - ACTIONS(3), 2, + [12454] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + sym_doc_comment, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91627,7 +89159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91666,11 +89198,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26420] = 3, - ACTIONS(3), 2, + [12509] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + sym_doc_comment, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91678,7 +89211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91717,11 +89250,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26474] = 3, - ACTIONS(3), 2, + [12564] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + sym_doc_comment, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91729,7 +89263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91768,11 +89302,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26528] = 3, - ACTIONS(3), 2, + [12619] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + sym_doc_comment, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91780,7 +89315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91819,11 +89354,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26582] = 3, - ACTIONS(3), 2, + [12674] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + sym_doc_comment, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91831,7 +89367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91870,11 +89406,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26636] = 3, - ACTIONS(3), 2, + [12729] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + sym_doc_comment, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91882,7 +89419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91921,11 +89458,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26690] = 3, - ACTIONS(3), 2, + [12784] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + sym_doc_comment, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91933,7 +89471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91972,11 +89510,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26744] = 3, - ACTIONS(3), 2, + [12839] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + sym_doc_comment, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91984,7 +89523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92023,11 +89562,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26798] = 3, - ACTIONS(3), 2, + [12894] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + sym_doc_comment, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92035,7 +89575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92074,11 +89614,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26852] = 3, - ACTIONS(3), 2, + [12949] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + sym_doc_comment, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92086,7 +89627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92125,11 +89666,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26906] = 3, - ACTIONS(3), 2, + [13004] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + sym_doc_comment, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92137,7 +89679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92176,11 +89718,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26960] = 3, - ACTIONS(3), 2, + [13059] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + sym_doc_comment, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92188,7 +89731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92227,11 +89770,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27014] = 3, - ACTIONS(3), 2, + [13114] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + sym_doc_comment, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92239,7 +89783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92278,11 +89822,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27068] = 3, - ACTIONS(3), 2, + [13169] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + sym_doc_comment, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92290,7 +89835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92329,11 +89874,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27122] = 3, - ACTIONS(3), 2, + [13224] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + sym_doc_comment, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92341,7 +89887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92380,11 +89926,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27176] = 3, - ACTIONS(3), 2, + [13279] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + sym_doc_comment, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92392,7 +89939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92431,11 +89978,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27230] = 3, - ACTIONS(3), 2, + [13334] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + sym_doc_comment, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92443,7 +89991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92482,11 +90030,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27284] = 3, - ACTIONS(3), 2, + [13389] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + sym_doc_comment, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92494,7 +90043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92533,11 +90082,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27338] = 3, - ACTIONS(3), 2, + [13444] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + sym_doc_comment, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92545,7 +90095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92584,11 +90134,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27392] = 3, - ACTIONS(3), 2, + [13499] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + sym_doc_comment, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92596,7 +90147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92635,11 +90186,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27446] = 3, - ACTIONS(3), 2, + [13554] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + sym_doc_comment, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92647,7 +90199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92686,11 +90238,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27500] = 3, - ACTIONS(3), 2, + [13609] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + sym_doc_comment, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92698,7 +90251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92737,11 +90290,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27554] = 3, - ACTIONS(3), 2, + [13664] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + sym_doc_comment, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92749,7 +90303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92788,11 +90342,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27608] = 3, - ACTIONS(3), 2, + [13719] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + sym_doc_comment, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92800,7 +90355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92839,11 +90394,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27662] = 3, - ACTIONS(3), 2, + [13774] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + sym_doc_comment, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92851,7 +90407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92890,11 +90446,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27716] = 3, - ACTIONS(3), 2, + [13829] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + sym_doc_comment, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92902,7 +90459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92941,11 +90498,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27770] = 3, - ACTIONS(3), 2, + [13884] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + sym_doc_comment, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92953,7 +90511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92992,13 +90550,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27824] = 4, - ACTIONS(2670), 1, + [13939] = 4, + ACTIONS(2668), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + sym_doc_comment, + ACTIONS(2666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93014,7 +90573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2666), 29, + ACTIONS(2664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93044,11 +90603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27880] = 3, - ACTIONS(3), 2, + [13996] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + sym_doc_comment, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93056,7 +90616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93095,10 +90655,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27934] = 3, - ACTIONS(3), 2, + [14051] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(556), 15, anon_sym_PLUS, anon_sym_STAR, @@ -93146,13 +90707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_else, - [27988] = 4, - ACTIONS(2676), 1, + [14106] = 4, + ACTIONS(2674), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, + sym_doc_comment, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93168,7 +90730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 29, + ACTIONS(2670), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93198,11 +90760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28044] = 3, - ACTIONS(3), 2, + [14163] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + sym_doc_comment, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93210,7 +90773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93249,11 +90812,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28098] = 3, - ACTIONS(3), 2, + [14218] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + sym_doc_comment, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93261,7 +90825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93300,11 +90864,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28152] = 3, - ACTIONS(3), 2, + [14273] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + sym_doc_comment, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93312,7 +90877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93351,11 +90916,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28206] = 3, - ACTIONS(3), 2, + [14328] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + sym_doc_comment, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93363,7 +90929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93402,11 +90968,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28260] = 3, - ACTIONS(3), 2, + [14383] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + sym_doc_comment, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93414,7 +90981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93453,11 +91020,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28314] = 3, - ACTIONS(3), 2, + [14438] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + sym_doc_comment, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93465,7 +91033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93504,11 +91072,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28368] = 3, - ACTIONS(3), 2, + [14493] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + sym_doc_comment, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93516,7 +91085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93555,11 +91124,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28422] = 3, - ACTIONS(3), 2, + [14548] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + sym_doc_comment, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93567,7 +91137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93606,11 +91176,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28476] = 3, - ACTIONS(3), 2, + [14603] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + sym_doc_comment, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93618,7 +91189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93657,11 +91228,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28530] = 3, - ACTIONS(3), 2, + [14658] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + sym_doc_comment, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93669,7 +91241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93708,11 +91280,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28584] = 3, - ACTIONS(3), 2, + [14713] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + sym_doc_comment, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93720,7 +91293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93759,11 +91332,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28638] = 3, - ACTIONS(3), 2, + [14768] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + sym_doc_comment, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93771,7 +91345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93810,11 +91384,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28692] = 3, - ACTIONS(3), 2, + [14823] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + sym_doc_comment, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93822,7 +91397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93861,11 +91436,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28746] = 3, - ACTIONS(3), 2, + [14878] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + sym_doc_comment, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93873,7 +91449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93912,11 +91488,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28800] = 3, - ACTIONS(3), 2, + [14933] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + sym_doc_comment, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93924,7 +91501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93963,13 +91540,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28854] = 4, - ACTIONS(2682), 1, + [14988] = 4, + ACTIONS(2680), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + sym_doc_comment, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93985,7 +91563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2678), 29, + ACTIONS(2676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94015,11 +91593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28910] = 3, - ACTIONS(3), 2, + [15045] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + sym_doc_comment, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94027,7 +91606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94066,11 +91645,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28964] = 3, - ACTIONS(3), 2, + [15100] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + sym_doc_comment, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94078,7 +91658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94117,11 +91697,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29018] = 3, - ACTIONS(3), 2, + [15155] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + sym_doc_comment, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94129,7 +91710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94168,11 +91749,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29072] = 3, - ACTIONS(3), 2, + [15210] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + sym_doc_comment, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94180,7 +91762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94219,11 +91801,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29126] = 3, - ACTIONS(3), 2, + [15265] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + sym_doc_comment, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94231,7 +91814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94270,11 +91853,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29180] = 3, - ACTIONS(3), 2, + [15320] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + sym_doc_comment, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94282,7 +91866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94321,11 +91905,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29234] = 3, - ACTIONS(3), 2, + [15375] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + sym_doc_comment, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94333,7 +91918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94372,11 +91957,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29288] = 3, - ACTIONS(3), 2, + [15430] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + sym_doc_comment, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94384,7 +91970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94423,11 +92009,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29342] = 3, - ACTIONS(3), 2, + [15485] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + sym_doc_comment, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94435,7 +92022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94474,11 +92061,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29396] = 3, - ACTIONS(3), 2, + [15540] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + sym_doc_comment, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94494,7 +92082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 30, + ACTIONS(2682), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94525,11 +92113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29450] = 3, - ACTIONS(3), 2, + [15595] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2690), 15, + sym_doc_comment, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94545,7 +92134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2688), 30, + ACTIONS(2686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94576,11 +92165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29504] = 3, - ACTIONS(3), 2, + [15650] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + sym_doc_comment, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94588,7 +92178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94627,11 +92217,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29558] = 3, - ACTIONS(3), 2, + [15705] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + sym_doc_comment, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94639,7 +92230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94678,11 +92269,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29612] = 3, - ACTIONS(3), 2, + [15760] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + sym_doc_comment, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94690,7 +92282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94729,11 +92321,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29666] = 3, - ACTIONS(3), 2, + [15815] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + sym_doc_comment, + ACTIONS(1176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94741,7 +92334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94780,11 +92373,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29720] = 3, - ACTIONS(3), 2, + [15870] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2512), 17, + sym_doc_comment, + ACTIONS(2510), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94802,7 +92396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2510), 28, + ACTIONS(2508), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94831,11 +92425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [29774] = 3, - ACTIONS(3), 2, + [15925] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + sym_doc_comment, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94843,7 +92438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94882,11 +92477,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29828] = 3, - ACTIONS(3), 2, + [15980] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + sym_doc_comment, + ACTIONS(1156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94894,7 +92490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94933,11 +92529,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29882] = 3, - ACTIONS(3), 2, + [16035] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + sym_doc_comment, + ACTIONS(1160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94945,7 +92542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94984,10 +92581,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 3, - ACTIONS(3), 2, + [16090] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, @@ -95034,11 +92632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29989] = 3, - ACTIONS(3), 2, + [16144] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + sym_doc_comment, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95054,7 +92653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(2600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95084,13 +92683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30042] = 4, - ACTIONS(2542), 1, + [16198] = 4, + ACTIONS(2540), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + sym_doc_comment, + ACTIONS(2534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95106,7 +92706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 28, + ACTIONS(2532), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95135,11 +92735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30097] = 3, - ACTIONS(3), 2, + [16254] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + sym_doc_comment, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95155,7 +92756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 29, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95185,13 +92786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30150] = 4, - ACTIONS(2700), 1, + [16308] = 4, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2698), 14, + sym_doc_comment, + ACTIONS(2696), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -95206,7 +92808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2696), 29, + ACTIONS(2694), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95236,11 +92838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30205] = 3, - ACTIONS(3), 2, + [16364] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + sym_doc_comment, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95256,7 +92859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 29, + ACTIONS(2700), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95286,11 +92889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30258] = 3, - ACTIONS(3), 2, + [16418] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + sym_doc_comment, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95306,7 +92910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2706), 29, + ACTIONS(2704), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95336,10 +92940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30311] = 3, - ACTIONS(3), 2, + [16472] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, @@ -95386,11 +92991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30364] = 3, - ACTIONS(3), 2, + [16526] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + sym_doc_comment, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95406,7 +93012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(2708), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95436,10 +93042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30417] = 3, - ACTIONS(3), 2, + [16580] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, @@ -95486,11 +93093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30470] = 3, - ACTIONS(3), 2, + [16634] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + sym_doc_comment, + ACTIONS(2714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95506,7 +93114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(2712), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95536,11 +93144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30523] = 3, - ACTIONS(3), 2, + [16688] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + sym_doc_comment, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95556,7 +93165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 29, + ACTIONS(2716), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95586,11 +93195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30576] = 3, - ACTIONS(3), 2, + [16742] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + sym_doc_comment, + ACTIONS(2722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95606,7 +93216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2722), 29, + ACTIONS(2720), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95636,11 +93246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30629] = 3, - ACTIONS(3), 2, + [16796] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2305), 15, + sym_doc_comment, + ACTIONS(2303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95656,7 +93267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2307), 29, + ACTIONS(2305), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95686,11 +93297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, - ACTIONS(3), 2, + [16850] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + sym_doc_comment, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95706,7 +93318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2726), 29, + ACTIONS(2724), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95736,11 +93348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, - ACTIONS(3), 2, + [16904] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2317), 15, + sym_doc_comment, + ACTIONS(2315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95756,7 +93369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2319), 29, + ACTIONS(2317), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95786,12 +93399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 4, - ACTIONS(2730), 1, + [16958] = 4, + ACTIONS(2728), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -95837,10 +93451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30843] = 3, - ACTIONS(3), 2, + [17014] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(604), 15, anon_sym_PLUS, anon_sym_STAR, @@ -95887,11 +93502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30896] = 3, - ACTIONS(3), 2, + [17068] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + sym_doc_comment, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95907,7 +93523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2730), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95937,11 +93553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30949] = 3, - ACTIONS(3), 2, + [17122] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + sym_doc_comment, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95957,7 +93574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2730), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95987,11 +93604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31002] = 3, - ACTIONS(3), 2, + [17176] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + sym_doc_comment, + ACTIONS(2736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96007,7 +93625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2734), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96037,11 +93655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31055] = 3, - ACTIONS(3), 2, + [17230] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + sym_doc_comment, + ACTIONS(2740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96057,7 +93676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(2738), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96087,11 +93706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31108] = 3, - ACTIONS(3), 2, + [17284] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + sym_doc_comment, + ACTIONS(2744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96107,7 +93727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(2742), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96137,11 +93757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31161] = 3, - ACTIONS(3), 2, + [17338] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + sym_doc_comment, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96157,7 +93778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2748), 29, + ACTIONS(2746), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96187,11 +93808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31214] = 3, - ACTIONS(3), 2, + [17392] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + sym_doc_comment, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96207,7 +93829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2750), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96237,11 +93859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31267] = 3, - ACTIONS(3), 2, + [17446] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + sym_doc_comment, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96257,7 +93880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(2754), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96287,10 +93910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31320] = 3, - ACTIONS(3), 2, + [17500] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, @@ -96337,11 +93961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31373] = 3, - ACTIONS(3), 2, + [17554] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + sym_doc_comment, + ACTIONS(2578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96357,7 +93982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 29, + ACTIONS(2574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96387,11 +94012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31426] = 3, - ACTIONS(3), 2, + [17608] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2762), 12, + sym_doc_comment, + ACTIONS(2760), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -96404,7 +94030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2760), 32, + ACTIONS(2758), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96437,11 +94063,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31479] = 3, - ACTIONS(3), 2, + [17662] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + sym_doc_comment, + ACTIONS(2764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96457,7 +94084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(2762), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96487,11 +94114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31532] = 3, - ACTIONS(3), 2, + [17716] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + sym_doc_comment, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96507,7 +94135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2766), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96537,11 +94165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31585] = 3, - ACTIONS(3), 2, + [17770] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + sym_doc_comment, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96557,7 +94186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96587,16 +94216,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31638] = 5, - ACTIONS(2776), 1, + [17824] = 5, + ACTIONS(2774), 1, anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(2421), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2419), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -96606,7 +94236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2419), 32, + ACTIONS(2417), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96639,11 +94269,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31695] = 3, - ACTIONS(3), 2, + [17882] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2781), 15, + sym_doc_comment, + ACTIONS(2779), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96659,7 +94290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2779), 29, + ACTIONS(2777), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96689,10 +94320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31748] = 3, - ACTIONS(3), 2, + [17936] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, @@ -96739,11 +94371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31801] = 3, - ACTIONS(3), 2, + [17990] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2785), 15, + sym_doc_comment, + ACTIONS(2783), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96759,7 +94392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2783), 29, + ACTIONS(2781), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96789,11 +94422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31854] = 3, - ACTIONS(3), 2, + [18044] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2789), 15, + sym_doc_comment, + ACTIONS(2787), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96809,7 +94443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2787), 29, + ACTIONS(2785), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96839,10 +94473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31907] = 3, - ACTIONS(3), 2, + [18098] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, @@ -96889,11 +94524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31960] = 3, - ACTIONS(3), 2, + [18152] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2793), 12, + sym_doc_comment, + ACTIONS(2791), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -96906,7 +94542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2791), 32, + ACTIONS(2789), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96939,11 +94575,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32013] = 3, - ACTIONS(3), 2, + [18206] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2797), 15, + sym_doc_comment, + ACTIONS(2795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96959,7 +94596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2795), 29, + ACTIONS(2793), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96989,11 +94626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32066] = 3, - ACTIONS(3), 2, + [18260] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2801), 15, + sym_doc_comment, + ACTIONS(2799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97009,7 +94647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2799), 29, + ACTIONS(2797), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97039,11 +94677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32119] = 3, - ACTIONS(3), 2, + [18314] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2805), 15, + sym_doc_comment, + ACTIONS(2803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97059,7 +94698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2803), 29, + ACTIONS(2801), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97089,11 +94728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32172] = 3, - ACTIONS(3), 2, + [18368] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2809), 12, + sym_doc_comment, + ACTIONS(2807), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -97106,7 +94746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2807), 32, + ACTIONS(2805), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97139,11 +94779,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32225] = 3, - ACTIONS(3), 2, + [18422] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2813), 15, + sym_doc_comment, + ACTIONS(2811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97159,7 +94800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2811), 29, + ACTIONS(2809), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97189,11 +94830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32278] = 3, - ACTIONS(3), 2, + [18476] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2313), 15, + sym_doc_comment, + ACTIONS(2311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97209,7 +94851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2315), 29, + ACTIONS(2313), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97239,10 +94881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32331] = 3, - ACTIONS(3), 2, + [18530] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, @@ -97289,11 +94932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32384] = 3, - ACTIONS(3), 2, + [18584] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2817), 15, + sym_doc_comment, + ACTIONS(2815), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97309,7 +94953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2815), 29, + ACTIONS(2813), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97339,10 +94983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32437] = 3, - ACTIONS(3), 2, + [18638] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, @@ -97389,11 +95034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32490] = 3, - ACTIONS(3), 2, + [18692] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2821), 12, + sym_doc_comment, + ACTIONS(2819), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -97406,7 +95052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2819), 32, + ACTIONS(2817), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97439,11 +95085,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32543] = 3, - ACTIONS(3), 2, + [18746] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2825), 15, + sym_doc_comment, + ACTIONS(2823), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97459,7 +95106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2823), 29, + ACTIONS(2821), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97489,11 +95136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32596] = 3, - ACTIONS(3), 2, + [18800] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2829), 12, + sym_doc_comment, + ACTIONS(2827), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -97506,7 +95154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2827), 32, + ACTIONS(2825), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97539,24 +95187,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32649] = 21, + [18854] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2841), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, STATE(1848), 1, sym_scoped_type_identifier, @@ -97570,15 +95218,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2833), 2, + ACTIONS(2831), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(2841), 2, + ACTIONS(2839), 2, anon_sym_default, anon_sym_union, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(906), 3, sym_self, sym_super, @@ -97589,7 +95238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2837), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97607,11 +95256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [32738] = 3, - ACTIONS(3), 2, + [18944] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2851), 15, + sym_doc_comment, + ACTIONS(2849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97627,7 +95277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2849), 29, + ACTIONS(2847), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97657,11 +95307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32791] = 3, - ACTIONS(3), 2, + [18998] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2855), 15, + sym_doc_comment, + ACTIONS(2853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97677,7 +95328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2853), 29, + ACTIONS(2851), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97707,11 +95358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32844] = 3, - ACTIONS(3), 2, + [19052] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2859), 15, + sym_doc_comment, + ACTIONS(2857), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97727,7 +95379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2857), 29, + ACTIONS(2855), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97757,11 +95409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32897] = 3, - ACTIONS(3), 2, + [19106] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2863), 15, + sym_doc_comment, + ACTIONS(2861), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97777,7 +95430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2861), 29, + ACTIONS(2859), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97807,10 +95460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32950] = 3, - ACTIONS(3), 2, + [19160] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(608), 15, anon_sym_PLUS, anon_sym_STAR, @@ -97857,11 +95511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33003] = 3, - ACTIONS(3), 2, + [19214] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2867), 15, + sym_doc_comment, + ACTIONS(2865), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97877,7 +95532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2865), 29, + ACTIONS(2863), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97907,10 +95562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33056] = 3, - ACTIONS(3), 2, + [19268] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, @@ -97957,10 +95613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33109] = 3, - ACTIONS(3), 2, + [19322] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(312), 15, anon_sym_PLUS, anon_sym_STAR, @@ -98007,11 +95664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33162] = 3, - ACTIONS(3), 2, + [19376] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2871), 15, + sym_doc_comment, + ACTIONS(2869), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98027,7 +95685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2869), 29, + ACTIONS(2867), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98057,11 +95715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33215] = 3, - ACTIONS(3), 2, + [19430] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2875), 12, + sym_doc_comment, + ACTIONS(2873), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -98074,7 +95733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2873), 32, + ACTIONS(2871), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98107,11 +95766,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33268] = 3, - ACTIONS(3), 2, + [19484] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2295), 15, + sym_doc_comment, + ACTIONS(2293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98127,7 +95787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2297), 29, + ACTIONS(2295), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98157,10 +95817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33321] = 3, - ACTIONS(3), 2, + [19538] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, @@ -98207,13 +95868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33374] = 4, - ACTIONS(2881), 1, + [19592] = 4, + ACTIONS(2879), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2879), 14, + sym_doc_comment, + ACTIONS(2877), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -98228,7 +95890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2877), 29, + ACTIONS(2875), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98258,11 +95920,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33429] = 3, - ACTIONS(3), 2, + [19648] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + sym_doc_comment, + ACTIONS(2544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98278,7 +95941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98308,10 +95971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33482] = 3, - ACTIONS(3), 2, + [19702] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, @@ -98358,11 +96022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33535] = 3, - ACTIONS(3), 2, + [19756] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2885), 15, + sym_doc_comment, + ACTIONS(2883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98378,7 +96043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2883), 29, + ACTIONS(2881), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98408,11 +96073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33588] = 3, - ACTIONS(3), 2, + [19810] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2889), 15, + sym_doc_comment, + ACTIONS(2887), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98428,7 +96094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2887), 29, + ACTIONS(2885), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98458,24 +96124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33641] = 21, + [19864] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2841), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, STATE(1848), 1, sym_scoped_type_identifier, @@ -98489,15 +96155,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2839), 2, anon_sym_default, anon_sym_union, - ACTIONS(2891), 2, + ACTIONS(2889), 2, anon_sym_SEMI, anon_sym_LBRACE, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(906), 3, sym_self, sym_super, @@ -98508,7 +96175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2837), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98526,10 +96193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [33730] = 3, - ACTIONS(3), 2, + [19954] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, @@ -98576,11 +96244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33783] = 3, - ACTIONS(3), 2, + [20008] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2895), 15, + sym_doc_comment, + ACTIONS(2893), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98596,7 +96265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2893), 29, + ACTIONS(2891), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98626,11 +96295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33836] = 3, - ACTIONS(3), 2, + [20062] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2899), 15, + sym_doc_comment, + ACTIONS(2897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98646,7 +96316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2897), 29, + ACTIONS(2895), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98676,11 +96346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33889] = 3, - ACTIONS(3), 2, + [20116] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2903), 15, + sym_doc_comment, + ACTIONS(2901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98696,7 +96367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2901), 29, + ACTIONS(2899), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98726,10 +96397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33942] = 3, - ACTIONS(3), 2, + [20170] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, @@ -98776,11 +96448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33995] = 3, - ACTIONS(3), 2, + [20224] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2907), 15, + sym_doc_comment, + ACTIONS(2905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98796,7 +96469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2905), 29, + ACTIONS(2903), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98826,11 +96499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34048] = 3, - ACTIONS(3), 2, + [20278] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2911), 15, + sym_doc_comment, + ACTIONS(2909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98846,7 +96520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2909), 29, + ACTIONS(2907), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98876,11 +96550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34101] = 3, - ACTIONS(3), 2, + [20332] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2915), 15, + sym_doc_comment, + ACTIONS(2913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98896,7 +96571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2913), 29, + ACTIONS(2911), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98926,11 +96601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34154] = 3, - ACTIONS(3), 2, + [20386] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2919), 15, + sym_doc_comment, + ACTIONS(2917), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98946,7 +96622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2917), 29, + ACTIONS(2915), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98976,11 +96652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34207] = 3, - ACTIONS(3), 2, + [20440] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2923), 15, + sym_doc_comment, + ACTIONS(2921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98996,7 +96673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2921), 29, + ACTIONS(2919), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99026,10 +96703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34260] = 3, - ACTIONS(3), 2, + [20494] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99076,11 +96754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34313] = 3, - ACTIONS(3), 2, + [20548] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + sym_doc_comment, + ACTIONS(2506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99096,7 +96775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 29, + ACTIONS(2504), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99126,10 +96805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34366] = 3, - ACTIONS(3), 2, + [20602] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99176,11 +96856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34419] = 3, - ACTIONS(3), 2, + [20656] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2927), 15, + sym_doc_comment, + ACTIONS(2925), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99196,7 +96877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2925), 29, + ACTIONS(2923), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99226,10 +96907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34472] = 3, - ACTIONS(3), 2, + [20710] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99276,11 +96958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34525] = 3, - ACTIONS(3), 2, + [20764] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2931), 15, + sym_doc_comment, + ACTIONS(2929), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99296,7 +96979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2929), 29, + ACTIONS(2927), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99326,11 +97009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34578] = 3, - ACTIONS(3), 2, + [20818] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2935), 15, + sym_doc_comment, + ACTIONS(2933), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99346,7 +97030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2933), 29, + ACTIONS(2931), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99376,10 +97060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34631] = 3, - ACTIONS(3), 2, + [20872] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(588), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99426,10 +97111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34684] = 3, - ACTIONS(3), 2, + [20926] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99476,10 +97162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34737] = 3, - ACTIONS(3), 2, + [20980] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(596), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99526,11 +97213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34790] = 3, - ACTIONS(3), 2, + [21034] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2939), 15, + sym_doc_comment, + ACTIONS(2937), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99546,7 +97234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2937), 29, + ACTIONS(2935), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99576,11 +97264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34843] = 3, - ACTIONS(3), 2, + [21088] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2943), 15, + sym_doc_comment, + ACTIONS(2941), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99596,7 +97285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2941), 29, + ACTIONS(2939), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99626,11 +97315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34896] = 3, - ACTIONS(3), 2, + [21142] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2947), 15, + sym_doc_comment, + ACTIONS(2945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99646,7 +97336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2945), 29, + ACTIONS(2943), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99676,11 +97366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 3, - ACTIONS(3), 2, + [21196] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2951), 15, + sym_doc_comment, + ACTIONS(2949), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99696,7 +97387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2949), 29, + ACTIONS(2947), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99726,10 +97417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35002] = 3, - ACTIONS(3), 2, + [21250] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99776,11 +97468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35055] = 3, - ACTIONS(3), 2, + [21304] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + sym_doc_comment, + ACTIONS(2502), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99796,7 +97489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99826,10 +97519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35108] = 3, - ACTIONS(3), 2, + [21358] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(560), 15, anon_sym_PLUS, anon_sym_STAR, @@ -99876,11 +97570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, - ACTIONS(3), 2, + [21412] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2955), 15, + sym_doc_comment, + ACTIONS(2953), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99896,7 +97591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2953), 29, + ACTIONS(2951), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99926,11 +97621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35214] = 3, - ACTIONS(3), 2, + [21466] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2959), 15, + sym_doc_comment, + ACTIONS(2957), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99946,7 +97642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2957), 29, + ACTIONS(2955), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99976,11 +97672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, - ACTIONS(3), 2, + [21520] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2963), 15, + sym_doc_comment, + ACTIONS(2961), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99996,7 +97693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2961), 29, + ACTIONS(2959), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100026,50 +97723,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 17, - ACTIONS(2967), 1, + [21574] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, + ACTIONS(2971), 1, anon_sym_EQ, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2965), 19, + ACTIONS(2963), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100089,20 +97787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35400] = 7, - ACTIONS(2967), 1, + [21655] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2997), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100116,7 +97815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2997), 25, + ACTIONS(2995), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100142,11 +97841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 3, - ACTIONS(3), 2, + [21716] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2698), 14, + sym_doc_comment, + ACTIONS(2696), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -100161,7 +97861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2696), 29, + ACTIONS(2694), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100191,54 +97891,55 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35512] = 20, - ACTIONS(2967), 1, + [21769] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3001), 7, + ACTIONS(2999), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100246,7 +97947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100257,18 +97958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35598] = 7, - ACTIONS(2548), 1, + [21856] = 7, + ACTIONS(2546), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2548), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 1, + ACTIONS(3009), 1, anon_sym_BANG, STATE(1094), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -100310,20 +98012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35658] = 7, - ACTIONS(2967), 1, + [21917] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3013), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100337,7 +98040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 25, + ACTIONS(3011), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100363,45 +98066,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35718] = 17, + [21978] = 17, ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -100426,24 +98130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35798] = 8, - ACTIONS(2967), 1, + [22059] = 8, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 10, + ACTIONS(3017), 10, anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, @@ -100454,7 +98159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100480,50 +98185,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35860] = 17, - ACTIONS(2967), 1, + [22122] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3023), 1, + ACTIONS(3021), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 19, + ACTIONS(3019), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100543,20 +98249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35940] = 7, - ACTIONS(2967), 1, + [22203] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3017), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100570,7 +98277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100596,50 +98303,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36000] = 17, - ACTIONS(2967), 1, + [22264] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3025), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3025), 19, + ACTIONS(3023), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100659,50 +98367,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36080] = 17, - ACTIONS(2967), 1, + [22345] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(3029), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 19, + ACTIONS(3027), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100722,40 +98431,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36160] = 13, - ACTIONS(2967), 1, + [22426] = 13, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 3, + ACTIONS(3017), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100781,54 +98491,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36232] = 20, - ACTIONS(2967), 1, + [22499] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3033), 7, + ACTIONS(3031), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100836,7 +98547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100847,11 +98558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36318] = 3, - ACTIONS(3), 2, + [22586] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2879), 14, + sym_doc_comment, + ACTIONS(2877), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -100866,7 +98578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2877), 29, + ACTIONS(2875), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100896,37 +98608,38 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36370] = 10, - ACTIONS(2967), 1, + [22639] = 10, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 6, + ACTIONS(3017), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100952,46 +98665,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36436] = 15, - ACTIONS(2967), 1, + [22706] = 15, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3017), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 21, + ACTIONS(3015), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101013,48 +98727,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36512] = 16, - ACTIONS(2967), 1, + [22783] = 16, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3017), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101075,92 +98790,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36590] = 12, - ACTIONS(2967), 1, + [22862] = 12, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3017), 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_as, - anon_sym_COMMA, - 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, - [36660] = 7, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, - anon_sym_PLUS, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 4, 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(3035), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101186,38 +98849,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36720] = 11, - ACTIONS(2967), 1, + [22933] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(2977), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + sym_doc_comment, + ACTIONS(3035), 13, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_DASH, - ACTIONS(2979), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3033), 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_as, + anon_sym_COMMA, + 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, + [22994] = 11, + ACTIONS(2965), 1, + anon_sym_LBRACK, + ACTIONS(2975), 1, + anon_sym_AMP, + ACTIONS(2979), 1, + anon_sym_DOT_DOT, + ACTIONS(2993), 1, + anon_sym_DOT, + ACTIONS(2967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 5, + ACTIONS(3017), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101243,27 +98961,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36788] = 9, - ACTIONS(2967), 1, + [23063] = 9, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 8, + ACTIONS(3017), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101272,7 +98991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 25, + ACTIONS(3015), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101298,50 +99017,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36852] = 17, - ACTIONS(2967), 1, + [23128] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3039), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(2977), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3039), 19, + ACTIONS(3037), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101361,24 +99081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 20, + [23209] = 20, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2841), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, STATE(1848), 1, sym_scoped_type_identifier, @@ -101392,12 +99112,13 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2839), 2, anon_sym_default, anon_sym_union, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(906), 3, sym_self, sym_super, @@ -101408,7 +99129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2837), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101426,7 +99147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37017] = 21, + [23295] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -101437,11 +99158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, - ACTIONS(3043), 1, + ACTIONS(3041), 1, sym_identifier, - ACTIONS(3045), 1, + ACTIONS(3043), 1, anon_sym_default, STATE(1188), 1, sym_for_lifetimes, @@ -101459,12 +99180,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function_modifiers, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, @@ -101473,7 +99195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2839), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101492,22 +99214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37104] = 21, + [23383] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2385), 1, + ACTIONS(2383), 1, anon_sym_fn, - ACTIONS(2393), 1, + ACTIONS(2391), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3045), 1, sym_identifier, - ACTIONS(3051), 1, + ACTIONS(3049), 1, anon_sym_default, - ACTIONS(3053), 1, + ACTIONS(3051), 1, sym_metavariable, STATE(748), 1, sym_scoped_type_identifier, @@ -101525,21 +99247,22 @@ static const uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2457), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(2399), 3, sym_self, sym_super, sym_crate, - ACTIONS(3049), 18, + ACTIONS(3047), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101558,20 +99281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37191] = 17, + [23471] = 17, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3055), 1, anon_sym_RPAREN, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -101579,9 +99302,6 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, @@ -101591,7 +99311,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2078), 2, sym_meta_item, sym__literal, - ACTIONS(3063), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, @@ -101600,7 +99324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101620,11 +99344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37270] = 3, - ACTIONS(3), 2, + [23551] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2905), 10, + sym_doc_comment, + ACTIONS(2903), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PLUS, @@ -101635,7 +99360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2907), 32, + ACTIONS(2905), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101668,17 +99393,18 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37321] = 6, - ACTIONS(2540), 1, + [23603] = 6, + ACTIONS(2538), 1, anon_sym_BANG, - ACTIONS(2542), 1, + ACTIONS(2540), 1, anon_sym_COLON_COLON, - ACTIONS(3067), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2536), 16, + sym_doc_comment, + ACTIONS(2534), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -101695,7 +99421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(2532), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -101719,7 +99445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37378] = 21, + [23661] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -101730,11 +99456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, - ACTIONS(3045), 1, + ACTIONS(3043), 1, anon_sym_default, - ACTIONS(3069), 1, + ACTIONS(3067), 1, sym_identifier, STATE(1188), 1, sym_for_lifetimes, @@ -101752,12 +99478,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function_modifiers, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, @@ -101766,7 +99493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2839), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101785,24 +99512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37465] = 20, + [23749] = 20, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2833), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2841), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, STATE(1848), 1, sym_scoped_type_identifier, @@ -101816,12 +99543,13 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2839), 2, anon_sym_default, anon_sym_union, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(906), 3, sym_self, sym_super, @@ -101832,7 +99560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2837), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101850,22 +99578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37550] = 21, + [23835] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2385), 1, + ACTIONS(2383), 1, anon_sym_fn, - ACTIONS(2393), 1, + ACTIONS(2391), 1, anon_sym_COLON_COLON, - ACTIONS(3051), 1, + ACTIONS(3049), 1, anon_sym_default, - ACTIONS(3053), 1, + ACTIONS(3051), 1, sym_metavariable, - ACTIONS(3071), 1, + ACTIONS(3069), 1, sym_identifier, STATE(747), 1, sym_scoped_type_identifier, @@ -101883,21 +99611,22 @@ static const uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2457), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(2399), 3, sym_self, sym_super, sym_crate, - ACTIONS(3049), 18, + ACTIONS(3047), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101916,11 +99645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37637] = 3, - ACTIONS(3), 2, + [23923] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(1174), 10, + sym_doc_comment, + ACTIONS(1172), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -101931,7 +99661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1176), 32, + ACTIONS(1174), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101964,16 +99694,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37688] = 6, - ACTIONS(2488), 1, + [23975] = 6, + ACTIONS(2486), 1, anon_sym_BANG, - ACTIONS(3073), 1, + ACTIONS(3071), 1, anon_sym_COLON_COLON, STATE(1094), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -102014,18 +99745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37744] = 16, + [24032] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, - ACTIONS(3075), 1, + ACTIONS(3073), 1, anon_sym_RPAREN, STATE(1577), 1, sym_scoped_identifier, @@ -102033,9 +99764,6 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, @@ -102045,7 +99773,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2184), 2, sym_meta_item, sym__literal, - ACTIONS(3063), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, @@ -102054,7 +99786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102074,7 +99806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37820] = 16, + [24109] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, @@ -102083,9 +99815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3077), 1, + ACTIONS(3075), 1, sym_identifier, - ACTIONS(3083), 1, + ACTIONS(3081), 1, sym_metavariable, STATE(1413), 1, sym_scoped_identifier, @@ -102095,13 +99827,14 @@ static const uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2341), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3081), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3079), 3, sym_self, sym_super, sym_crate, @@ -102114,7 +99847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3079), 19, + ACTIONS(3077), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102134,7 +99867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37896] = 16, + [24186] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, @@ -102143,9 +99876,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3085), 1, + ACTIONS(3083), 1, sym_identifier, - ACTIONS(3091), 1, + ACTIONS(3089), 1, sym_metavariable, STATE(1422), 1, sym_scoped_identifier, @@ -102155,13 +99888,14 @@ static const uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2341), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3087), 3, sym_self, sym_super, sym_crate, @@ -102174,7 +99908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3087), 19, + ACTIONS(3085), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102194,14 +99928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37972] = 5, - ACTIONS(2594), 1, + [24263] = 5, + ACTIONS(2592), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 1, + ACTIONS(3009), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -102243,18 +99978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38026] = 16, + [24318] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, - ACTIONS(3093), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, STATE(1577), 1, sym_scoped_identifier, @@ -102262,9 +99997,6 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, @@ -102274,7 +100006,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2184), 2, sym_meta_item, sym__literal, - ACTIONS(3063), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, @@ -102283,7 +100019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102303,11 +100039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38102] = 3, - ACTIONS(3), 2, + [24395] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3097), 9, + sym_doc_comment, + ACTIONS(3095), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102317,7 +100054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3095), 31, + ACTIONS(3093), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102349,62 +100086,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38151] = 23, + [24445] = 23, ACTIONS(368), 1, anon_sym_RBRACK, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3099), 1, + ACTIONS(3097), 1, anon_sym_SEMI, - ACTIONS(3101), 1, + ACTIONS(3099), 1, anon_sym_COMMA, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, STATE(2094), 1, aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102415,11 +100153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38240] = 3, - ACTIONS(3), 2, + [24535] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + sym_doc_comment, + ACTIONS(2528), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102436,7 +100175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 24, + ACTIONS(2530), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102461,11 +100200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38289] = 3, - ACTIONS(3), 2, + [24585] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + sym_doc_comment, + ACTIONS(2512), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102482,7 +100222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 24, + ACTIONS(2514), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102507,11 +100247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38338] = 3, - ACTIONS(3), 2, + [24635] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, + sym_doc_comment, + ACTIONS(2520), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102528,7 +100269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 24, + ACTIONS(2522), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102553,62 +100294,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38387] = 23, + [24685] = 23, ACTIONS(552), 1, anon_sym_RBRACK, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3107), 1, + ACTIONS(3105), 1, anon_sym_SEMI, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_COMMA, STATE(1869), 1, aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102619,11 +100361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38476] = 3, - ACTIONS(3), 2, + [24775] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2809), 9, + sym_doc_comment, + ACTIONS(2807), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102633,7 +100376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2807), 31, + ACTIONS(2805), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102665,13 +100408,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38525] = 4, - ACTIONS(3115), 1, + [24825] = 4, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + sym_doc_comment, + ACTIONS(3111), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102680,7 +100424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_AMP, sym_metavariable, - ACTIONS(3111), 31, + ACTIONS(3109), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102712,13 +100456,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38576] = 4, - ACTIONS(3117), 1, + [24877] = 4, + ACTIONS(3115), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + sym_doc_comment, + ACTIONS(3111), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -102727,7 +100472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3111), 31, + ACTIONS(3109), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102759,11 +100504,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38627] = 3, - ACTIONS(3), 2, + [24929] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3121), 9, + sym_doc_comment, + ACTIONS(3119), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102773,7 +100519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3119), 31, + ACTIONS(3117), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102805,11 +100551,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38676] = 3, - ACTIONS(3), 2, + [24979] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + sym_doc_comment, + ACTIONS(2554), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102826,7 +100573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2558), 24, + ACTIONS(2556), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102851,15 +100598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38725] = 5, - ACTIONS(2592), 1, + [25029] = 5, + ACTIONS(2590), 1, anon_sym_BANG, - ACTIONS(3123), 1, + ACTIONS(3121), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + sym_doc_comment, + ACTIONS(2534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102875,7 +100623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(2532), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102899,11 +100647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38778] = 3, - ACTIONS(3), 2, + [25083] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3127), 9, + sym_doc_comment, + ACTIONS(3125), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102913,7 +100662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3125), 31, + ACTIONS(3123), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102945,14 +100694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38827] = 5, - ACTIONS(2488), 1, + [25133] = 5, + ACTIONS(2486), 1, anon_sym_BANG, - ACTIONS(3129), 1, + ACTIONS(3127), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -102993,16 +100743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38880] = 15, + [25187] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -103010,9 +100760,6 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, @@ -103022,7 +100769,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2184), 2, sym_meta_item, sym__literal, - ACTIONS(3063), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, @@ -103031,7 +100782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103051,11 +100802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38953] = 3, - ACTIONS(3), 2, + [25261] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2875), 9, + sym_doc_comment, + ACTIONS(2873), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103065,7 +100817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2873), 31, + ACTIONS(2871), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103097,13 +100849,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39002] = 4, - ACTIONS(2636), 1, + [25311] = 4, + ACTIONS(2634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + sym_doc_comment, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103119,7 +100872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 23, + ACTIONS(2600), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103143,20 +100896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39052] = 18, + [25362] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, - ACTIONS(3045), 1, + ACTIONS(3043), 1, anon_sym_default, - ACTIONS(3131), 1, + ACTIONS(3129), 1, sym_identifier, - ACTIONS(3133), 1, + ACTIONS(3131), 1, anon_sym_fn, STATE(1829), 1, sym_scoped_type_identifier, @@ -103170,12 +100923,13 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type, STATE(2497), 1, sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, @@ -103184,7 +100938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2839), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103203,13 +100957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39130] = 4, - ACTIONS(3123), 1, + [25441] = 4, + ACTIONS(3121), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + sym_doc_comment, + ACTIONS(2534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103225,7 +100980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(2532), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103249,12 +101004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39180] = 4, - ACTIONS(3135), 1, + [25492] = 4, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, @@ -103295,60 +101051,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39230] = 22, - ACTIONS(2967), 1, + [25543] = 22, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3137), 1, + ACTIONS(3135), 1, anon_sym_RPAREN, - ACTIONS(3139), 1, + ACTIONS(3137), 1, anon_sym_COMMA, STATE(1892), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103359,60 +101116,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39316] = 22, + [25630] = 22, ACTIONS(382), 1, anon_sym_RPAREN, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3141), 1, + ACTIONS(3139), 1, anon_sym_COMMA, STATE(2032), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103423,13 +101181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39402] = 4, - ACTIONS(2604), 1, + [25717] = 4, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + sym_doc_comment, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103445,7 +101204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 23, + ACTIONS(2600), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103469,20 +101228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39452] = 18, + [25768] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2845), 1, sym_metavariable, - ACTIONS(3045), 1, + ACTIONS(3043), 1, anon_sym_default, - ACTIONS(3143), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3145), 1, + ACTIONS(3143), 1, anon_sym_fn, STATE(1808), 1, sym_scoped_type_identifier, @@ -103496,12 +101255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_scoped_identifier, STATE(2535), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(694), 3, anon_sym_async, anon_sym_const, @@ -103510,7 +101270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2839), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103529,50 +101289,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39530] = 17, - ACTIONS(2967), 1, + [25847] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, + ACTIONS(2971), 1, anon_sym_EQ, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2965), 14, + ACTIONS(2963), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -103587,58 +101348,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39605] = 21, + [25923] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1106), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103649,58 +101411,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39688] = 21, - ACTIONS(2967), 1, + [26007] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3181), 1, + ACTIONS(3179), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103711,57 +101474,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39771] = 20, - ACTIONS(2967), 1, + [26091] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3183), 2, + ACTIONS(3181), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103772,58 +101536,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39852] = 21, + [26173] = 21, ACTIONS(270), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103834,58 +101599,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39935] = 21, - ACTIONS(2967), 1, + [26257] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3185), 1, + ACTIONS(3183), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103896,50 +101662,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40018] = 17, - ACTIONS(2967), 1, + [26341] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3023), 1, + ACTIONS(3021), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 14, + ACTIONS(3019), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -103954,58 +101721,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40093] = 21, + [26417] = 21, ACTIONS(276), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104016,58 +101784,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40176] = 21, + [26501] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(244), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104078,58 +101847,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40259] = 21, + [26585] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(243), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104140,58 +101910,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40342] = 21, - ACTIONS(2967), 1, + [26669] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3187), 1, + ACTIONS(3185), 1, anon_sym_RBRACE, - ACTIONS(3189), 1, + ACTIONS(3187), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104202,120 +101973,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40425] = 21, + [26753] = 21, ACTIONS(494), 1, anon_sym_RPAREN, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 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, - [40508] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(241), 1, - sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104326,58 +102036,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40591] = 21, + [26837] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, - STATE(216), 1, + STATE(241), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3149), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3171), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + sym_doc_comment, + ACTIONS(3147), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3165), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3175), 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, + [26921] = 21, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(2965), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_DOT, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(3003), 1, + anon_sym_as, + ACTIONS(3151), 1, + anon_sym_AMP, + ACTIONS(3157), 1, + anon_sym_AMP_AMP, + ACTIONS(3159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3161), 1, + anon_sym_PIPE, + ACTIONS(3163), 1, + anon_sym_CARET, + ACTIONS(3169), 1, + anon_sym_EQ, + ACTIONS(3173), 1, + anon_sym_DOT_DOT, + STATE(216), 1, + sym_block, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104388,58 +102162,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40674] = 21, + [27005] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(222), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104450,58 +102225,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40757] = 21, + [27089] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(160), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104512,58 +102288,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40840] = 21, + [27173] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(227), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104574,58 +102351,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40923] = 21, + [27257] = 21, ACTIONS(260), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104636,20 +102414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41006] = 7, - ACTIONS(2967), 1, + [27341] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3013), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104663,7 +102442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 20, + ACTIONS(3011), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -104684,57 +102463,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41061] = 20, - ACTIONS(2967), 1, + [27397] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3193), 2, + ACTIONS(3191), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104745,57 +102525,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41142] = 20, - ACTIONS(2967), 1, + [27479] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2999), 2, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104806,45 +102587,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41223] = 17, + [27561] = 17, ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -104864,58 +102646,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41298] = 21, + [27637] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(760), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104926,58 +102709,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41381] = 21, - ACTIONS(2967), 1, + [27721] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, + ACTIONS(3193), 1, anon_sym_RBRACE, - ACTIONS(3197), 1, + ACTIONS(3195), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104988,58 +102772,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41464] = 21, - ACTIONS(2967), 1, + [27805] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3199), 1, + ACTIONS(3197), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105050,58 +102835,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41547] = 21, + [27889] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(45), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105112,58 +102898,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41630] = 21, - ACTIONS(2967), 1, + [27973] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, - ACTIONS(3201), 1, + ACTIONS(3199), 1, anon_sym_LBRACE, STATE(1110), 1, sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105174,58 +102961,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41713] = 21, + [28057] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(234), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105236,58 +103024,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41796] = 21, + [28141] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1096), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105298,20 +103087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41879] = 7, - ACTIONS(2967), 1, + [28225] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3035), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105325,7 +103115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3035), 20, + ACTIONS(3033), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105346,58 +103136,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41934] = 21, + [28281] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(166), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105408,50 +103199,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42017] = 17, - ACTIONS(2967), 1, + [28365] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3025), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3025), 14, + ACTIONS(3023), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105466,58 +103258,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42092] = 21, + [28441] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(131), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105528,58 +103321,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42175] = 21, - ACTIONS(2967), 1, + [28525] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, STATE(235), 1, sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105590,20 +103384,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42258] = 7, - ACTIONS(2967), 1, + [28609] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2997), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105617,7 +103412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2997), 20, + ACTIONS(2995), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105638,20 +103433,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42313] = 7, - ACTIONS(2967), 1, + [28665] = 7, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3017), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105665,7 +103461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105686,58 +103482,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42368] = 21, + [28721] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1120), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105748,58 +103545,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42451] = 21, + [28805] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(81), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105810,57 +103608,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42534] = 20, - ACTIONS(2967), 1, + [28889] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3205), 2, + ACTIONS(3203), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105871,50 +103670,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42615] = 17, - ACTIONS(2967), 1, + [28971] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3039), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3039), 14, + ACTIONS(3037), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105929,27 +103729,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42690] = 9, - ACTIONS(2967), 1, + [29047] = 9, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 8, + ACTIONS(3017), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105958,7 +103759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105979,58 +103780,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42749] = 21, - ACTIONS(2967), 1, + [29107] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3207), 1, + ACTIONS(3205), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106041,38 +103843,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42832] = 11, - ACTIONS(2967), 1, + [29191] = 11, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 5, + ACTIONS(3017), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106093,58 +103896,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42895] = 21, + [29255] = 21, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(215), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106155,58 +103959,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42978] = 21, - ACTIONS(2967), 1, + [29339] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3209), 1, + ACTIONS(3207), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106217,57 +104022,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43061] = 20, - ACTIONS(2967), 1, + [29423] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3211), 2, + ACTIONS(3209), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106278,57 +104084,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43142] = 20, - ACTIONS(2967), 1, + [29505] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 2, + ACTIONS(3211), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106339,58 +104146,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43223] = 21, + [29587] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1108), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106401,58 +104209,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43306] = 21, - ACTIONS(2967), 1, + [29671] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(3213), 1, anon_sym_RPAREN, - ACTIONS(3217), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106463,58 +104272,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43389] = 21, + [29755] = 21, ACTIONS(266), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106525,39 +104335,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43472] = 12, - ACTIONS(2967), 1, + [29839] = 12, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 4, + ACTIONS(3017), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106578,48 +104389,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43537] = 16, - ACTIONS(2967), 1, + [29905] = 16, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3017), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 15, + ACTIONS(3015), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106635,46 +104447,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43610] = 15, - ACTIONS(2967), 1, + [29979] = 15, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3017), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 16, + ACTIONS(3015), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106691,57 +104504,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43681] = 20, - ACTIONS(2967), 1, + [30051] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(3217), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106752,37 +104566,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43762] = 10, - ACTIONS(2967), 1, + [30133] = 10, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 6, + ACTIONS(3017), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106803,58 +104618,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43823] = 21, + [30195] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(47), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106865,58 +104681,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43906] = 21, + [30279] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(765), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106927,57 +104744,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43989] = 20, - ACTIONS(2967), 1, + [30363] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3219), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106988,40 +104806,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44070] = 13, - ACTIONS(2967), 1, + [30445] = 13, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3017), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 3, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107042,58 +104861,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44137] = 21, + [30513] = 21, ACTIONS(274), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107104,50 +104924,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44220] = 17, - ACTIONS(2967), 1, + [30597] = 17, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(3029), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 14, + ACTIONS(3027), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107162,58 +104983,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44295] = 21, + [30673] = 21, ACTIONS(262), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107224,24 +105046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44378] = 8, - ACTIONS(2967), 1, + [30757] = 8, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 10, + ACTIONS(3017), 10, anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, @@ -107252,7 +105075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 20, + ACTIONS(3015), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107273,58 +105096,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44435] = 21, - ACTIONS(2967), 1, + [30815] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3223), 1, + ACTIONS(3221), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107335,57 +105159,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44518] = 20, - ACTIONS(2967), 1, + [30899] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3033), 2, + ACTIONS(3031), 2, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107396,58 +105221,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44599] = 21, - ACTIONS(2967), 1, + [30981] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, - ACTIONS(3225), 1, + ACTIONS(3223), 1, anon_sym_LBRACE, STATE(182), 1, sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107458,58 +105284,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44682] = 21, + [31065] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1100), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107520,58 +105347,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44765] = 21, + [31149] = 21, ACTIONS(502), 1, anon_sym_RPAREN, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107582,58 +105410,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44848] = 21, + [31233] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(173), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107644,58 +105473,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 21, + [31317] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(142), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107706,58 +105536,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45014] = 21, - ACTIONS(2967), 1, + [31401] = 21, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - ACTIONS(3227), 1, + ACTIONS(3225), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107768,57 +105599,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45097] = 20, - ACTIONS(2967), 1, + [31485] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3229), 2, + ACTIONS(3227), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107829,58 +105661,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45178] = 21, + [31567] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3151), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3161), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3169), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_DOT_DOT, STATE(1033), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3149), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3167), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3147), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3165), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3175), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107891,57 +105724,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45261] = 20, - ACTIONS(2967), 1, + [31651] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107952,57 +105786,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45342] = 20, - ACTIONS(2967), 1, + [31733] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 2, + ACTIONS(3231), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108013,22 +105848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45423] = 15, + [31815] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_RBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -108036,10 +105871,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -108049,7 +105885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108069,56 +105905,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [45494] = 20, - ACTIONS(2967), 1, + [31887] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3253), 1, + ACTIONS(3251), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108129,56 +105966,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45574] = 20, - ACTIONS(2967), 1, + [31968] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108189,56 +106027,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45654] = 20, - ACTIONS(2967), 1, + [32049] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108249,56 +106088,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, - ACTIONS(2967), 1, + [32130] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108309,56 +106149,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, - ACTIONS(2967), 1, + [32211] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3177), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108369,56 +106210,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, - ACTIONS(2967), 1, + [32292] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108429,56 +106271,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 20, - ACTIONS(2967), 1, + [32373] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,56 +106332,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46054] = 20, - ACTIONS(2967), 1, + [32454] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3263), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108549,56 +106393,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46134] = 20, - ACTIONS(2967), 1, + [32535] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108609,20 +106454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46214] = 14, + [32616] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, - ACTIONS(3267), 1, + ACTIONS(3265), 1, anon_sym_RBRACE, STATE(1715), 1, sym_scoped_identifier, @@ -108630,10 +106475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -108643,7 +106489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108663,56 +106509,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46282] = 20, - ACTIONS(2967), 1, + [32685] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3267), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108723,56 +106570,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46362] = 20, - ACTIONS(2967), 1, + [32766] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3271), 1, + ACTIONS(3269), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108783,56 +106631,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46442] = 20, - ACTIONS(2967), 1, + [32847] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3271), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108843,56 +106692,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46522] = 20, - ACTIONS(2967), 1, + [32928] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 1, + ACTIONS(3273), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108903,56 +106753,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46602] = 20, - ACTIONS(2967), 1, + [33009] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3275), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108963,56 +106814,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46682] = 20, - ACTIONS(2967), 1, + [33090] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109023,56 +106875,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46762] = 20, - ACTIONS(2967), 1, + [33171] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3281), 1, + ACTIONS(3279), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109083,56 +106936,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46842] = 20, - ACTIONS(2967), 1, + [33252] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3283), 1, + ACTIONS(3281), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109143,56 +106997,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46922] = 20, - ACTIONS(2967), 1, + [33333] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3283), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109203,56 +107058,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47002] = 20, - ACTIONS(2967), 1, + [33414] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3287), 1, + ACTIONS(3285), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109263,56 +107119,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47082] = 20, - ACTIONS(2967), 1, + [33495] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3287), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109323,56 +107180,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47162] = 20, - ACTIONS(2967), 1, + [33576] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, + ACTIONS(3289), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109383,56 +107241,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47242] = 20, - ACTIONS(2967), 1, + [33657] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(3291), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109443,56 +107302,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47322] = 20, - ACTIONS(2967), 1, + [33738] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, + ACTIONS(3293), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109503,56 +107363,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47402] = 20, - ACTIONS(2967), 1, + [33819] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3297), 1, + ACTIONS(3295), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109563,56 +107424,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47482] = 20, - ACTIONS(2967), 1, + [33900] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, + ACTIONS(3297), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109623,56 +107485,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47562] = 20, - ACTIONS(2967), 1, + [33981] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, + ACTIONS(3299), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109683,56 +107546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 20, - ACTIONS(2967), 1, + [34062] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3303), 1, + ACTIONS(3301), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109743,56 +107607,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47722] = 20, - ACTIONS(2967), 1, + [34143] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3303), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109803,56 +107668,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47802] = 20, - ACTIONS(2967), 1, + [34224] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, + ACTIONS(3305), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109863,56 +107729,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 20, - ACTIONS(2967), 1, + [34305] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, + ACTIONS(3307), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109923,20 +107790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47962] = 14, + [34386] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, - ACTIONS(3311), 1, + ACTIONS(3309), 1, anon_sym_RBRACE, STATE(1715), 1, sym_scoped_identifier, @@ -109944,10 +107811,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -109957,7 +107825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109977,56 +107845,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48030] = 20, - ACTIONS(2967), 1, + [34455] = 20, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(2981), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(2983), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(2985), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(2987), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3003), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_DOT_DOT, - ACTIONS(3313), 1, + ACTIONS(3311), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(2973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(2991), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3101), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(2989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3007), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110037,18 +107906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48110] = 13, + [34536] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -110056,10 +107925,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -110069,7 +107939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110089,18 +107959,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48175] = 13, + [34602] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -110108,10 +107978,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -110121,7 +107992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110141,18 +108012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48240] = 13, + [34668] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -110160,10 +108031,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -110173,7 +108045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110193,18 +108065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48305] = 13, + [34734] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -110212,10 +108084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -110225,7 +108098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110245,18 +108118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48370] = 13, + [34800] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3239), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3249), 1, sym_metavariable, STATE(1715), 1, sym_scoped_identifier, @@ -110264,10 +108137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + sym_doc_comment, + ACTIONS(3247), 3, sym_self, sym_super, sym_crate, @@ -110277,7 +108151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3241), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110297,15 +108171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48435] = 3, - ACTIONS(3), 2, + [34866] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + sym_doc_comment, + ACTIONS(3315), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3315), 28, + ACTIONS(3313), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110334,15 +108209,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48475] = 3, - ACTIONS(3), 2, + [34907] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3321), 3, + sym_doc_comment, + ACTIONS(3319), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3319), 28, + ACTIONS(3317), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110371,15 +108247,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48515] = 3, - ACTIONS(3), 2, + [34948] = 3, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3325), 3, + sym_doc_comment, + ACTIONS(3323), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3323), 28, + ACTIONS(3321), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110408,14 +108285,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48555] = 11, + [34989] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110425,14 +108302,15 @@ static const uint16_t ts_small_parse_table[] = { sym_meta_item, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110452,14 +108330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48610] = 11, + [35045] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110469,14 +108347,15 @@ static const uint16_t ts_small_parse_table[] = { sym_meta_item, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110496,14 +108375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48665] = 11, + [35101] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110513,14 +108392,15 @@ static const uint16_t ts_small_parse_table[] = { sym_meta_item, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110540,14 +108420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48720] = 11, + [35157] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110557,14 +108437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_meta_item, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110584,14 +108465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48775] = 11, + [35213] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110601,14 +108482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110628,14 +108510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48830] = 11, + [35269] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110645,14 +108527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2515), 1, sym_meta_item, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110672,14 +108555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48885] = 11, + [35325] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3053), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3063), 1, sym_metavariable, STATE(1577), 1, sym_scoped_identifier, @@ -110689,14 +108572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_meta_item, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + sym_doc_comment, + ACTIONS(3061), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3057), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110716,14 +108600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48940] = 10, + [35381] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3327), 1, + ACTIONS(3325), 1, sym_identifier, - ACTIONS(3333), 1, + ACTIONS(3331), 1, sym_metavariable, STATE(2177), 1, sym_scoped_identifier, @@ -110731,14 +108615,15 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3331), 3, + sym_doc_comment, + ACTIONS(3329), 3, sym_self, sym_super, sym_crate, - ACTIONS(3329), 19, + ACTIONS(3327), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110758,14 +108643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48992] = 10, + [35434] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3335), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3341), 1, + ACTIONS(3339), 1, sym_metavariable, STATE(2268), 1, sym_scoped_identifier, @@ -110773,14 +108658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_type_with_turbofish, STATE(2453), 1, sym_bracketed_type, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3339), 3, + sym_doc_comment, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - ACTIONS(3337), 19, + ACTIONS(3335), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110800,13 +108686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49044] = 3, - ACTIONS(2317), 1, + [35487] = 3, + ACTIONS(2315), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2319), 20, + sym_doc_comment, + ACTIONS(2317), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110827,13 +108714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49074] = 3, - ACTIONS(2295), 1, + [35518] = 3, + ACTIONS(2293), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2297), 20, + sym_doc_comment, + ACTIONS(2295), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110854,29 +108742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49104] = 10, - ACTIONS(3345), 1, + [35549] = 10, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(3349), 1, anon_sym_COLON_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3355), 1, anon_sym_AT, STATE(1343), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3347), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -110886,25 +108775,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [49146] = 9, - ACTIONS(2486), 1, + [35592] = 9, + ACTIONS(2484), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 12, + sym_doc_comment, + ACTIONS(2480), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110917,17 +108807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49186] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2526), 2, + [35633] = 4, + ACTIONS(2524), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2530), 2, + ACTIONS(2528), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2532), 14, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2530), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110942,16 +108833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49215] = 4, - ACTIONS(2512), 1, + [35663] = 4, + ACTIONS(2510), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2516), 2, + ACTIONS(2514), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2510), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2508), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110967,23 +108859,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49244] = 8, - ACTIONS(2496), 1, + [35693] = 8, + ACTIONS(2494), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2494), 12, + sym_doc_comment, + ACTIONS(2492), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110996,23 +108889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49281] = 8, - ACTIONS(2500), 1, + [35731] = 8, + ACTIONS(2498), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2498), 12, + sym_doc_comment, + ACTIONS(2496), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111025,16 +108919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49318] = 4, - ACTIONS(2520), 1, + [35769] = 4, + ACTIONS(2518), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2524), 2, + ACTIONS(2522), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2518), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2516), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111050,16 +108945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49347] = 4, - ACTIONS(2554), 1, + [35799] = 4, + ACTIONS(2552), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2558), 2, + ACTIONS(2556), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2552), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2550), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111075,16 +108971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49376] = 4, - ACTIONS(2528), 1, + [35829] = 4, + ACTIONS(2526), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 2, + ACTIONS(2530), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2526), 15, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2524), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111100,17 +108997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49405] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 2, + [35859] = 4, + ACTIONS(2508), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2514), 2, + ACTIONS(2512), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2516), 14, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2514), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111125,17 +109023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49434] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2518), 2, + [35889] = 4, + ACTIONS(2516), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2522), 2, + ACTIONS(2520), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2524), 14, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2522), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111150,17 +109049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49463] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2552), 2, + [35919] = 4, + ACTIONS(2550), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2556), 2, + ACTIONS(2554), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2558), 14, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2556), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111175,30 +109075,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49492] = 17, - ACTIONS(3367), 1, + [35949] = 17, + ACTIONS(3365), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3367), 1, anon_sym_enum, - ACTIONS(3371), 1, + ACTIONS(3369), 1, anon_sym_fn, - ACTIONS(3373), 1, + ACTIONS(3371), 1, anon_sym_mod, - ACTIONS(3375), 1, + ACTIONS(3373), 1, anon_sym_static, - ACTIONS(3377), 1, + ACTIONS(3375), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_trait, - ACTIONS(3381), 1, + ACTIONS(3379), 1, anon_sym_type, - ACTIONS(3383), 1, + ACTIONS(3381), 1, anon_sym_union, - ACTIONS(3385), 1, + ACTIONS(3383), 1, anon_sym_unsafe, - ACTIONS(3387), 1, + ACTIONS(3385), 1, anon_sym_use, - ACTIONS(3389), 1, + ACTIONS(3387), 1, anon_sym_extern, STATE(1514), 1, sym_extern_modifier, @@ -111206,25 +109106,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_modifiers_repeat1, STATE(2359), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3365), 2, + ACTIONS(3363), 2, anon_sym_async, anon_sym_default, - [49546] = 6, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [36004] = 6, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + sym_doc_comment, + ACTIONS(2504), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111238,30 +109140,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49578] = 17, - ACTIONS(3391), 1, + [36037] = 17, + ACTIONS(3389), 1, anon_sym_const, - ACTIONS(3393), 1, + ACTIONS(3391), 1, anon_sym_enum, - ACTIONS(3395), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3395), 1, anon_sym_mod, - ACTIONS(3399), 1, + ACTIONS(3397), 1, anon_sym_static, - ACTIONS(3401), 1, + ACTIONS(3399), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3401), 1, anon_sym_trait, - ACTIONS(3405), 1, + ACTIONS(3403), 1, anon_sym_type, - ACTIONS(3407), 1, + ACTIONS(3405), 1, anon_sym_union, - ACTIONS(3409), 1, + ACTIONS(3407), 1, anon_sym_unsafe, - ACTIONS(3411), 1, + ACTIONS(3409), 1, anon_sym_use, - ACTIONS(3413), 1, + ACTIONS(3411), 1, anon_sym_extern, STATE(1503), 1, sym_extern_modifier, @@ -111269,25 +109171,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_modifiers_repeat1, STATE(2533), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3365), 2, + ACTIONS(3363), 2, anon_sym_async, anon_sym_default, - [49632] = 6, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [36092] = 6, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + sym_doc_comment, + ACTIONS(2500), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111301,19 +109205,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49664] = 6, - ACTIONS(3355), 1, + [36125] = 6, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + sym_doc_comment, + ACTIONS(2542), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111327,13 +109232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49696] = 3, - ACTIONS(3415), 1, + [36158] = 3, + ACTIONS(3413), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3111), 15, + sym_doc_comment, + ACTIONS(3109), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111349,11 +109255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49721] = 2, - ACTIONS(3), 2, + [36184] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2510), 16, + sym_doc_comment, + ACTIONS(2508), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111370,13 +109277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49744] = 3, - ACTIONS(2646), 1, + [36208] = 3, + ACTIONS(2644), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2644), 14, + sym_doc_comment, + ACTIONS(2642), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111391,14 +109299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49768] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2522), 2, + [36233] = 3, + ACTIONS(2520), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2524), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2522), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111412,13 +109321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49792] = 3, - ACTIONS(2730), 1, + [36258] = 3, + ACTIONS(2728), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3113), 14, + sym_doc_comment, + ACTIONS(3111), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111433,13 +109343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49816] = 3, - ACTIONS(3417), 1, + [36283] = 3, + ACTIONS(3415), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3113), 14, + sym_doc_comment, + ACTIONS(3111), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111454,14 +109365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49840] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2530), 2, + [36308] = 3, + ACTIONS(2528), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2532), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2530), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111475,43 +109387,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49864] = 14, - ACTIONS(2482), 1, + [36333] = 14, + ACTIONS(2480), 1, anon_sym_PLUS, - ACTIONS(3343), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(3347), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3349), 1, + ACTIONS(3347), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3355), 1, anon_sym_AT, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3419), 1, + ACTIONS(3417), 1, anon_sym_LPAREN, - ACTIONS(3424), 1, + ACTIONS(3422), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3421), 2, + ACTIONS(3419), 2, anon_sym_RPAREN, anon_sym_COMMA, - [49910] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [36380] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3095), 15, + sym_doc_comment, + ACTIONS(3093), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111527,13 +109441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49932] = 3, - ACTIONS(2618), 1, + [36403] = 3, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2616), 14, + sym_doc_comment, + ACTIONS(2614), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111548,75 +109463,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49956] = 13, - ACTIONS(3347), 1, + [36428] = 13, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3355), 1, anon_sym_AT, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3421), 1, + ACTIONS(3419), 1, anon_sym_RBRACK, - ACTIONS(3426), 1, + ACTIONS(3424), 1, anon_sym_LPAREN, - ACTIONS(3428), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2482), 2, + ACTIONS(2480), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50000] = 13, - ACTIONS(3343), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [36473] = 13, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(3347), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3349), 1, + ACTIONS(3347), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3355), 1, anon_sym_AT, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3430), 1, + ACTIONS(3428), 1, anon_sym_LPAREN, - ACTIONS(3432), 1, + ACTIONS(3430), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2482), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2480), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [50044] = 3, - ACTIONS(2622), 1, + [36518] = 3, + ACTIONS(2620), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2620), 14, + sym_doc_comment, + ACTIONS(2618), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111631,14 +109549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50068] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2556), 2, + [36543] = 3, + ACTIONS(2554), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2558), 13, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2556), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111652,21 +109571,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50092] = 6, - ACTIONS(3345), 1, + [36568] = 6, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3432), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3347), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -111676,11 +109596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50122] = 2, - ACTIONS(3), 2, + [36599] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, + sym_doc_comment, + ACTIONS(2903), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111696,13 +109617,14 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [50144] = 3, - ACTIONS(2590), 1, + [36622] = 3, + ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2588), 14, + sym_doc_comment, + ACTIONS(2586), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111717,11 +109639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50168] = 2, - ACTIONS(3), 2, + [36647] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3125), 15, + sym_doc_comment, + ACTIONS(3123), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111737,13 +109660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50190] = 3, - ACTIONS(2664), 1, + [36670] = 3, + ACTIONS(2662), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2662), 14, + sym_doc_comment, + ACTIONS(2660), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111758,11 +109682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50214] = 2, - ACTIONS(3), 2, + [36695] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3119), 15, + sym_doc_comment, + ACTIONS(3117), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111778,15 +109703,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50236] = 4, - ACTIONS(2546), 1, + [36718] = 4, + ACTIONS(2544), 1, anon_sym_COLON, + ACTIONS(3434), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2542), 12, + 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_PIPE, + [36744] = 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2656), 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, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_PIPE, + [36766] = 3, ACTIONS(3436), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2628), 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, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [36790] = 4, + ACTIONS(2544), 1, + anon_sym_COLON, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + sym_doc_comment, + ACTIONS(2542), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111799,11 +109788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50261] = 2, - ACTIONS(3), 2, + [36816] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2658), 14, + sym_doc_comment, + ACTIONS(2646), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111818,94 +109808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50282] = 3, - ACTIONS(3438), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 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, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50305] = 4, - ACTIONS(2546), 1, + [36838] = 4, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(3115), 1, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2544), 12, - 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_PIPE, - [50330] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2648), 14, + sym_doc_comment, + ACTIONS(2504), 12, 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_PIPE, - [50351] = 4, - ACTIONS(2508), 1, - anon_sym_COLON, + [36864] = 3, ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2506), 12, - 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_PIPE, - [50376] = 3, - ACTIONS(3442), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2666), 13, + sym_doc_comment, + ACTIONS(2664), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111919,22 +109851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50399] = 14, - ACTIONS(3355), 1, + [36888] = 14, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_COLON, - ACTIONS(3446), 1, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3450), 1, + ACTIONS(3448), 1, anon_sym_GT, STATE(1343), 1, sym_type_arguments, @@ -111944,17 +109876,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_parameters_repeat1, STATE(1994), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2482), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_as, - [50444] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [36934] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2584), 14, + sym_doc_comment, + ACTIONS(2582), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111969,11 +109903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50465] = 2, - ACTIONS(3), 2, + [36956] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2684), 14, + sym_doc_comment, + ACTIONS(2682), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111988,13 +109923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50486] = 3, - ACTIONS(3452), 1, + [36978] = 3, + ACTIONS(3450), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2624), 13, + sym_doc_comment, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112008,13 +109944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50509] = 3, - ACTIONS(3454), 1, + [37002] = 3, + ACTIONS(3452), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2672), 13, + sym_doc_comment, + ACTIONS(2670), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112028,19 +109965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50532] = 5, - ACTIONS(3460), 1, + [37026] = 5, + ACTIONS(3458), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3458), 2, + ACTIONS(3456), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3456), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3454), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112050,13 +109988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50559] = 3, - ACTIONS(2305), 1, + [37054] = 3, + ACTIONS(2303), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2307), 13, + sym_doc_comment, + ACTIONS(2305), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112070,11 +110009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50582] = 2, - ACTIONS(3), 2, + [37078] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2688), 14, + sym_doc_comment, + ACTIONS(2686), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112089,15 +110029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50603] = 4, - ACTIONS(3466), 1, + [37100] = 4, + ACTIONS(3464), 1, anon_sym_pat, STATE(564), 1, sym_fragment_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3464), 12, + sym_doc_comment, + ACTIONS(3462), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -112110,15 +110051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50628] = 4, - ACTIONS(2546), 1, + [37126] = 4, + ACTIONS(2544), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + sym_doc_comment, + ACTIONS(2542), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112131,13 +110073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50653] = 3, - ACTIONS(3468), 1, + [37152] = 3, + ACTIONS(3466), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2652), 13, + sym_doc_comment, + ACTIONS(2650), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112151,13 +110094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50676] = 3, - ACTIONS(3470), 1, + [37176] = 3, + ACTIONS(3468), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2678), 13, + sym_doc_comment, + ACTIONS(2676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112171,15 +110115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50699] = 4, - ACTIONS(2504), 1, + [37200] = 4, + ACTIONS(2502), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2502), 12, + sym_doc_comment, + ACTIONS(2500), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112192,13 +110137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50724] = 3, - ACTIONS(3472), 1, + [37226] = 3, + ACTIONS(3470), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + sym_doc_comment, + ACTIONS(2636), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112212,13 +110158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50747] = 3, - ACTIONS(3476), 1, + [37250] = 3, + ACTIONS(3474), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3474), 12, + sym_doc_comment, + ACTIONS(3472), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112231,11 +110178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50769] = 2, - ACTIONS(3), 2, + [37273] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + sym_doc_comment, + ACTIONS(2730), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112249,11 +110197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50789] = 2, - ACTIONS(3), 2, + [37294] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + sym_doc_comment, + ACTIONS(2716), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112267,10 +110216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50809] = 2, - ACTIONS(3), 2, + [37315] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(590), 13, anon_sym_SEMI, anon_sym_RPAREN, @@ -112285,11 +110235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50829] = 2, - ACTIONS(3), 2, + [37336] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2787), 13, + sym_doc_comment, + ACTIONS(2785), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112303,11 +110254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50849] = 2, - ACTIONS(3), 2, + [37357] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2722), 13, + sym_doc_comment, + ACTIONS(2720), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112321,11 +110273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50869] = 2, - ACTIONS(3), 2, + [37378] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + sym_doc_comment, + ACTIONS(2500), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112339,11 +110292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50889] = 2, - ACTIONS(3), 2, + [37399] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2714), 13, + sym_doc_comment, + ACTIONS(2712), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112357,11 +110311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50909] = 2, - ACTIONS(3), 2, + [37420] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2726), 13, + sym_doc_comment, + ACTIONS(2724), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112375,13 +110330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50929] = 3, - ACTIONS(3480), 1, + [37441] = 3, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3478), 12, + sym_doc_comment, + ACTIONS(3476), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112394,10 +110350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50951] = 2, - ACTIONS(3), 2, + [37464] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(648), 13, anon_sym_SEMI, anon_sym_RPAREN, @@ -112412,11 +110369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50971] = 2, - ACTIONS(3), 2, + [37485] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2953), 13, + sym_doc_comment, + ACTIONS(2951), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112430,11 +110388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50991] = 2, - ACTIONS(3), 2, + [37506] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + sym_doc_comment, + ACTIONS(2730), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112448,11 +110407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51011] = 2, - ACTIONS(3), 2, + [37527] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2865), 13, + sym_doc_comment, + ACTIONS(2863), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112466,11 +110426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51031] = 2, - ACTIONS(3), 2, + [37548] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + sym_doc_comment, + ACTIONS(2504), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112484,11 +110445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51051] = 2, - ACTIONS(3), 2, + [37569] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2772), 13, + sym_doc_comment, + ACTIONS(2770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112502,11 +110464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51071] = 2, - ACTIONS(3), 2, + [37590] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2937), 13, + sym_doc_comment, + ACTIONS(2935), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112520,11 +110483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51091] = 2, - ACTIONS(3), 2, + [37611] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + sym_doc_comment, + ACTIONS(2542), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112538,11 +110502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51111] = 2, - ACTIONS(3), 2, + [37632] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2957), 13, + sym_doc_comment, + ACTIONS(2955), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112556,11 +110521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51131] = 2, - ACTIONS(3), 2, + [37653] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2961), 13, + sym_doc_comment, + ACTIONS(2959), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112574,16 +110540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51151] = 4, - ACTIONS(3349), 1, + [37674] = 4, + ACTIONS(3347), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 10, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112594,11 +110561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51175] = 2, - ACTIONS(3), 2, + [37699] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2917), 13, + sym_doc_comment, + ACTIONS(2915), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112612,10 +110580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51195] = 2, - ACTIONS(3), 2, + [37720] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(602), 13, anon_sym_SEMI, anon_sym_RPAREN, @@ -112630,11 +110599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51215] = 2, - ACTIONS(3), 2, + [37741] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2702), 13, + sym_doc_comment, + ACTIONS(2700), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112648,11 +110618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51235] = 2, - ACTIONS(3), 2, + [37762] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2857), 13, + sym_doc_comment, + ACTIONS(2855), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112666,11 +110637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51255] = 2, - ACTIONS(3), 2, + [37783] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2925), 13, + sym_doc_comment, + ACTIONS(2923), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112684,11 +110656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51275] = 2, - ACTIONS(3), 2, + [37804] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2795), 13, + sym_doc_comment, + ACTIONS(2793), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112702,11 +110675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51295] = 2, - ACTIONS(3), 2, + [37825] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2748), 13, + sym_doc_comment, + ACTIONS(2746), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112720,11 +110694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51315] = 2, - ACTIONS(3), 2, + [37846] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2921), 13, + sym_doc_comment, + ACTIONS(2919), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112738,10 +110713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51335] = 2, - ACTIONS(3), 2, + [37867] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(586), 13, anon_sym_SEMI, anon_sym_RPAREN, @@ -112756,14 +110732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51355] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2514), 2, + [37888] = 3, + ACTIONS(2512), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2516), 11, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2514), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112775,80 +110752,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [51377] = 5, - ACTIONS(2514), 1, + [37911] = 5, + ACTIONS(2512), 1, anon_sym_COLON, - ACTIONS(3482), 1, + ACTIONS(3480), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2510), 5, + sym_doc_comment, + ACTIONS(2508), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2516), 5, + ACTIONS(2514), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51402] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3485), 2, + [37937] = 4, + ACTIONS(3483), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2552), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2550), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2558), 6, + ACTIONS(2556), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51425] = 10, - ACTIONS(3345), 1, + [37961] = 10, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(3349), 1, anon_sym_COLON_COLON, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3355), 1, anon_sym_AT, - ACTIONS(3488), 1, + ACTIONS(3486), 1, anon_sym_BANG, STATE(1343), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 3, anon_sym_EQ_GT, anon_sym_if, anon_sym_PIPE, - [51460] = 4, - ACTIONS(3494), 1, + [37997] = 4, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3492), 2, + ACTIONS(3490), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3490), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3488), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112858,12 +110839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51483] = 3, + [38021] = 3, ACTIONS(556), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(554), 11, anon_sym_SEMI, anon_sym_RPAREN, @@ -112876,16 +110858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51504] = 4, - ACTIONS(3500), 1, + [38043] = 4, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3498), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3496), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3494), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112895,16 +110878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51527] = 4, - ACTIONS(3417), 1, + [38067] = 4, + ACTIONS(3415), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3498), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3496), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3494), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112914,16 +110898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51550] = 4, - ACTIONS(3502), 1, + [38091] = 4, + ACTIONS(3500), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3498), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3496), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3494), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112933,93 +110918,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51573] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3504), 2, + [38115] = 4, + ACTIONS(3502), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2526), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2524), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2532), 6, + ACTIONS(2530), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51596] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3482), 2, + [38139] = 4, + ACTIONS(3480), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2510), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2508), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2516), 6, + ACTIONS(2514), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51619] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3507), 2, + [38163] = 4, + ACTIONS(3505), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2518), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2516), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2524), 6, + ACTIONS(2522), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51642] = 5, - ACTIONS(2530), 1, + [38187] = 5, + ACTIONS(2528), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2526), 3, + sym_doc_comment, + ACTIONS(2524), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3504), 3, + ACTIONS(3502), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2532), 5, + ACTIONS(2530), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51667] = 4, - ACTIONS(3494), 1, + [38213] = 4, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3512), 2, + ACTIONS(3510), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3510), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3508), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113029,16 +111019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51690] = 4, - ACTIONS(3500), 1, + [38237] = 4, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3512), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113048,16 +111039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51713] = 4, - ACTIONS(3417), 1, + [38261] = 4, + ACTIONS(3415), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3512), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113067,36 +111059,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51736] = 5, - ACTIONS(2514), 1, + [38285] = 5, + ACTIONS(2512), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2510), 3, + sym_doc_comment, + ACTIONS(2508), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3482), 3, + ACTIONS(3480), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2516), 5, + ACTIONS(2514), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51761] = 4, - ACTIONS(3502), 1, + [38311] = 4, + ACTIONS(3500), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3512), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113106,32 +111100,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51784] = 5, - ACTIONS(2556), 1, + [38335] = 5, + ACTIONS(2554), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2552), 3, + sym_doc_comment, + ACTIONS(2550), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3485), 3, + ACTIONS(3483), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2558), 5, + ACTIONS(2556), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51809] = 3, + [38361] = 3, ACTIONS(532), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(530), 11, anon_sym_SEMI, anon_sym_RPAREN, @@ -113144,12 +111140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51830] = 3, + [38383] = 3, ACTIONS(542), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(540), 11, anon_sym_SEMI, anon_sym_RPAREN, @@ -113162,93 +111159,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51851] = 5, - ACTIONS(2522), 1, + [38405] = 5, + ACTIONS(2520), 1, anon_sym_COLON, - ACTIONS(3507), 1, + ACTIONS(3505), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2518), 5, + sym_doc_comment, + ACTIONS(2516), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2524), 5, + ACTIONS(2522), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51876] = 5, - ACTIONS(2522), 1, + [38431] = 5, + ACTIONS(2520), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2518), 3, + sym_doc_comment, + ACTIONS(2516), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3507), 3, + ACTIONS(3505), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2524), 5, + ACTIONS(2522), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51901] = 5, - ACTIONS(2530), 1, + [38457] = 5, + ACTIONS(2528), 1, anon_sym_COLON, - ACTIONS(3504), 1, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2526), 5, + sym_doc_comment, + ACTIONS(2524), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2532), 5, + ACTIONS(2530), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51926] = 5, - ACTIONS(2556), 1, + [38483] = 5, + ACTIONS(2554), 1, anon_sym_COLON, - ACTIONS(3485), 1, + ACTIONS(3483), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2552), 5, + sym_doc_comment, + ACTIONS(2550), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2558), 5, + ACTIONS(2556), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51951] = 3, - ACTIONS(3520), 1, + [38509] = 3, + ACTIONS(3518), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3518), 10, + sym_doc_comment, + ACTIONS(3516), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113259,36 +111261,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51971] = 9, - ACTIONS(3355), 1, + [38530] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3522), 1, + ACTIONS(3520), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52003] = 3, - ACTIONS(3526), 1, + [38563] = 3, + ACTIONS(3524), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3524), 10, + sym_doc_comment, + ACTIONS(3522), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113299,17 +111303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52023] = 5, + [38584] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3530), 1, + ACTIONS(3528), 1, sym_crate, STATE(1561), 1, sym_string_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + sym_doc_comment, + ACTIONS(3526), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -113318,17 +111323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52047] = 5, + [38609] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3532), 1, + ACTIONS(3530), 1, sym_crate, STATE(1561), 1, sym_string_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + sym_doc_comment, + ACTIONS(3526), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -113337,12 +111343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52071] = 3, + [38634] = 3, ACTIONS(600), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, ACTIONS(598), 10, anon_sym_SEMI, anon_sym_RPAREN, @@ -113354,13 +111361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52091] = 3, - ACTIONS(3536), 1, + [38655] = 3, + ACTIONS(3534), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3534), 10, + sym_doc_comment, + ACTIONS(3532), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113371,13 +111379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52111] = 3, - ACTIONS(3540), 1, + [38676] = 3, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3538), 10, + sym_doc_comment, + ACTIONS(3536), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113388,13 +111397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52131] = 3, - ACTIONS(3544), 1, + [38697] = 3, + ACTIONS(3542), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3542), 10, + sym_doc_comment, + ACTIONS(3540), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113405,17 +111415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52151] = 5, + [38718] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3546), 1, + ACTIONS(3544), 1, sym_crate, STATE(1561), 1, sym_string_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + sym_doc_comment, + ACTIONS(3526), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -113424,13 +111435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52175] = 3, - ACTIONS(3516), 1, + [38743] = 3, + ACTIONS(3514), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3514), 10, + sym_doc_comment, + ACTIONS(3512), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113441,13 +111453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52195] = 3, - ACTIONS(3550), 1, + [38764] = 3, + ACTIONS(3548), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3548), 10, + sym_doc_comment, + ACTIONS(3546), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113458,59 +111471,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52215] = 9, - ACTIONS(3355), 1, + [38785] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3552), 1, + ACTIONS(3550), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52247] = 9, - ACTIONS(3355), 1, + [38818] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3554), 1, + ACTIONS(3552), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52279] = 3, - ACTIONS(3558), 1, + [38851] = 3, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3556), 10, + sym_doc_comment, + ACTIONS(3554), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113521,33 +111537,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52299] = 6, - ACTIONS(3560), 1, + [38872] = 6, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52325] = 3, - ACTIONS(3568), 1, + [38899] = 3, + ACTIONS(3566), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3566), 10, + sym_doc_comment, + ACTIONS(3564), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113558,13 +111576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52345] = 3, - ACTIONS(3572), 1, + [38920] = 3, + ACTIONS(3570), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3570), 10, + sym_doc_comment, + ACTIONS(3568), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113575,36 +111594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52365] = 9, - ACTIONS(3355), 1, + [38941] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3574), 1, + ACTIONS(3572), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52397] = 3, - ACTIONS(3578), 1, + [38974] = 3, + ACTIONS(3576), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3576), 10, + sym_doc_comment, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113615,13 +111636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52417] = 3, - ACTIONS(3582), 1, + [38995] = 3, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3580), 10, + sym_doc_comment, + ACTIONS(3578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113632,13 +111654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52437] = 3, - ACTIONS(3349), 1, + [39016] = 3, + ACTIONS(3347), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3343), 10, + sym_doc_comment, + ACTIONS(3341), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113649,13 +111672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52457] = 3, - ACTIONS(3586), 1, + [39037] = 3, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3584), 10, + sym_doc_comment, + ACTIONS(3582), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113666,36 +111690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52477] = 9, - ACTIONS(3355), 1, + [39058] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3588), 1, + ACTIONS(3586), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52509] = 3, - ACTIONS(3592), 1, + [39091] = 3, + ACTIONS(3590), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3590), 10, + sym_doc_comment, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113706,13 +111732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52529] = 3, - ACTIONS(3596), 1, + [39112] = 3, + ACTIONS(3594), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3594), 10, + sym_doc_comment, + ACTIONS(3592), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113723,13 +111750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52549] = 3, - ACTIONS(3600), 1, + [39133] = 3, + ACTIONS(3598), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3598), 10, + sym_doc_comment, + ACTIONS(3596), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113740,13 +111768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52569] = 3, - ACTIONS(3604), 1, + [39154] = 3, + ACTIONS(3602), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + sym_doc_comment, + ACTIONS(3600), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113757,13 +111786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52589] = 3, - ACTIONS(3608), 1, + [39175] = 3, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + sym_doc_comment, + ACTIONS(3604), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113774,82 +111804,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52609] = 9, - ACTIONS(3355), 1, + [39196] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3610), 1, + ACTIONS(3608), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52641] = 9, - ACTIONS(3355), 1, + [39229] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3612), 1, + ACTIONS(3610), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52673] = 9, - ACTIONS(3355), 1, + [39262] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3614), 1, + ACTIONS(3612), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + sym_doc_comment, + ACTIONS(2480), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52705] = 3, - ACTIONS(3618), 1, + [39295] = 3, + ACTIONS(3616), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + sym_doc_comment, + ACTIONS(3614), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113860,13 +111894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52725] = 3, - ACTIONS(3622), 1, + [39316] = 3, + ACTIONS(3620), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + sym_doc_comment, + ACTIONS(3618), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113877,13 +111912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52745] = 3, - ACTIONS(3498), 1, + [39337] = 3, + ACTIONS(3496), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3496), 10, + sym_doc_comment, + ACTIONS(3494), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113894,13 +111930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52765] = 3, - ACTIONS(3626), 1, + [39358] = 3, + ACTIONS(3624), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + sym_doc_comment, + ACTIONS(3622), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113911,13 +111948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52785] = 3, - ACTIONS(3630), 1, + [39379] = 3, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + sym_doc_comment, + ACTIONS(3626), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113928,13 +111966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52805] = 3, - ACTIONS(3634), 1, + [39400] = 3, + ACTIONS(3632), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + sym_doc_comment, + ACTIONS(3630), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113945,33 +111984,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52825] = 6, - ACTIONS(3560), 1, + [39421] = 6, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52851] = 3, - ACTIONS(3640), 1, + [39448] = 3, + ACTIONS(3638), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + sym_doc_comment, + ACTIONS(3636), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113982,13 +112023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52871] = 3, - ACTIONS(3644), 1, + [39469] = 3, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + sym_doc_comment, + ACTIONS(3640), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113999,13 +112041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52891] = 3, - ACTIONS(3648), 1, + [39490] = 3, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + sym_doc_comment, + ACTIONS(3644), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114016,13 +112059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52911] = 3, - ACTIONS(3652), 1, + [39511] = 3, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + sym_doc_comment, + ACTIONS(3648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114033,17 +112077,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52931] = 5, + [39532] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3654), 1, + ACTIONS(3652), 1, sym_crate, STATE(1561), 1, sym_string_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + sym_doc_comment, + ACTIONS(3526), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -114052,13 +112097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52955] = 3, - ACTIONS(3658), 1, + [39557] = 3, + ACTIONS(3656), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3656), 10, + sym_doc_comment, + ACTIONS(3654), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114069,379 +112115,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52975] = 5, - ACTIONS(3562), 1, + [39578] = 5, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52998] = 5, - ACTIONS(3562), 1, + [39602] = 5, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53021] = 10, + [39626] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3660), 1, anon_sym_RBRACE, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_COMMA, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, STATE(2051), 1, sym_enum_variant, STATE(2542), 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, - [53054] = 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [39660] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, STATE(2099), 1, sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3668), 2, + ACTIONS(3666), 2, anon_sym_true, anon_sym_false, STATE(1070), 2, sym_string_literal, sym_boolean_literal, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - [53079] = 10, + [39686] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3670), 1, + ACTIONS(3668), 1, anon_sym_RBRACE, - ACTIONS(3672), 1, + ACTIONS(3670), 1, anon_sym_COMMA, STATE(1863), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53112] = 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [39720] = 6, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3379), 1, + ACTIONS(3377), 1, anon_sym_trait, - ACTIONS(3674), 1, + ACTIONS(3672), 1, anon_sym_impl, STATE(163), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53137] = 8, - ACTIONS(2249), 1, + [39746] = 8, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3674), 1, sym_identifier, - ACTIONS(3678), 1, + ACTIONS(3676), 1, anon_sym_RBRACE, - ACTIONS(3680), 1, + ACTIONS(3678), 1, anon_sym_COMMA, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, STATE(1915), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53166] = 6, + [39776] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, STATE(2103), 1, sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3668), 2, + ACTIONS(3666), 2, anon_sym_true, anon_sym_false, STATE(1070), 2, sym_string_literal, sym_boolean_literal, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - [53191] = 9, - ACTIONS(3355), 1, + [39802] = 9, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3684), 1, + ACTIONS(3682), 1, anon_sym_EQ, STATE(1374), 1, sym_parameters, STATE(1749), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2482), 3, + sym_doc_comment, + ACTIONS(2480), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [53222] = 5, - ACTIONS(3562), 1, + [39834] = 5, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3686), 1, + ACTIONS(3684), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53245] = 7, - ACTIONS(3355), 1, + [39858] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3688), 1, + ACTIONS(3686), 1, anon_sym_LBRACE, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 5, + sym_doc_comment, + ACTIONS(2542), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53272] = 10, + [39886] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3692), 1, + ACTIONS(3690), 1, anon_sym_RBRACE, - ACTIONS(3694), 1, + ACTIONS(3692), 1, anon_sym_COMMA, STATE(1897), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1547), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53305] = 10, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [39920] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3696), 1, + ACTIONS(3694), 1, anon_sym_RBRACE, - ACTIONS(3698), 1, + ACTIONS(3696), 1, anon_sym_COMMA, STATE(2089), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1551), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53338] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [39954] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3700), 1, + ACTIONS(3698), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53368] = 9, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [39985] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3706), 1, + ACTIONS(3704), 1, anon_sym_GT, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, STATE(1761), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [53398] = 7, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40016] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3710), 1, + ACTIONS(3708), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53424] = 5, + [40043] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3712), 1, + ACTIONS(3710), 1, anon_sym_move, STATE(99), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53446] = 7, - ACTIONS(3345), 1, + [40066] = 7, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, + ACTIONS(3347), 1, anon_sym_COLON, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3714), 1, + ACTIONS(3712), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [53472] = 10, - ACTIONS(3716), 1, + [40093] = 10, + ACTIONS(3714), 1, anon_sym_SEMI, - ACTIONS(3718), 1, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(924), 1, sym_field_declaration_list, @@ -114451,158 +112515,166 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2270), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [53504] = 9, + sym_doc_comment, + [40126] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3726), 1, + ACTIONS(3724), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53534] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40157] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3726), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53564] = 9, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40188] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3730), 1, + ACTIONS(3728), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [53594] = 9, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40219] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3732), 1, + ACTIONS(3730), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [53624] = 7, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40250] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3734), 1, + ACTIONS(3732), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53650] = 5, - ACTIONS(3736), 1, + [40277] = 5, + ACTIONS(3734), 1, anon_sym_SEMI, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(312), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53672] = 7, - ACTIONS(2249), 1, + [40300] = 7, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3674), 1, sym_identifier, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT_DOT, - ACTIONS(3740), 1, + ACTIONS(3738), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, STATE(2132), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53698] = 10, - ACTIONS(3718), 1, + [40327] = 10, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3742), 1, + ACTIONS(3740), 1, anon_sym_SEMI, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(373), 1, sym_field_declaration_list, @@ -114612,242 +112684,254 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2216), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [53730] = 9, - ACTIONS(2245), 1, + sym_doc_comment, + [40360] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3744), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [53760] = 5, - ACTIONS(3748), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40391] = 5, + ACTIONS(3746), 1, anon_sym_SEMI, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(944), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53782] = 5, - ACTIONS(3750), 1, + [40414] = 5, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3752), 1, + ACTIONS(3750), 1, anon_sym_SEMI, STATE(812), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53804] = 9, + [40437] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3754), 1, + ACTIONS(3752), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53834] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40468] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3754), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53864] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40499] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3758), 1, + ACTIONS(3756), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53894] = 9, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40530] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3760), 1, + ACTIONS(3758), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [53924] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40561] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3762), 1, + ACTIONS(3760), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53954] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40592] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3764), 1, + ACTIONS(3762), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53984] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40623] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54014] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40654] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3766), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54044] = 10, - ACTIONS(3718), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40685] = 10, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3768), 1, anon_sym_SEMI, STATE(918), 1, sym_field_declaration_list, @@ -114857,312 +112941,328 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2146), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [54076] = 5, - ACTIONS(3738), 1, + sym_doc_comment, + [40718] = 5, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3770), 1, anon_sym_SEMI, STATE(466), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54098] = 7, - ACTIONS(3355), 1, + [40741] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3774), 1, + ACTIONS(3772), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54124] = 7, - ACTIONS(3355), 1, + [40768] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(3774), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54150] = 9, - ACTIONS(2245), 1, + [40795] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3778), 1, + ACTIONS(3776), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54180] = 7, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40826] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3778), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54206] = 7, - ACTIONS(3355), 1, + [40853] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(3780), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54232] = 9, - ACTIONS(2245), 1, + [40880] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3784), 1, + ACTIONS(3782), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54262] = 9, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40911] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3786), 1, + ACTIONS(3784), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54292] = 7, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [40942] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3788), 1, + ACTIONS(3786), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54318] = 7, - ACTIONS(3355), 1, + [40969] = 7, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3788), 1, anon_sym_for, STATE(1346), 1, sym_type_arguments, STATE(1371), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54344] = 9, - ACTIONS(2245), 1, + [40996] = 9, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, - ACTIONS(3792), 1, + ACTIONS(3790), 1, anon_sym_GT, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54374] = 7, - ACTIONS(2249), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41027] = 7, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3674), 1, sym_identifier, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT_DOT, - ACTIONS(3794), 1, + ACTIONS(3792), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, STATE(2132), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [54400] = 5, + [41054] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3796), 1, + ACTIONS(3794), 1, sym_identifier, STATE(102), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + sym_doc_comment, + ACTIONS(3796), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54422] = 9, + [41077] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, - ACTIONS(3800), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54452] = 9, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41108] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54482] = 10, - ACTIONS(3718), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41139] = 10, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3802), 1, anon_sym_SEMI, STATE(289), 1, sym_field_declaration_list, @@ -115172,66 +113272,70 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2170), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [54514] = 4, - ACTIONS(3436), 1, + sym_doc_comment, + [41172] = 4, + ACTIONS(3434), 1, anon_sym_COLON_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54533] = 8, + [41192] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, STATE(2198), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54560] = 4, - ACTIONS(3808), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41220] = 4, + ACTIONS(3806), 1, anon_sym_PLUS, STATE(1545), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + sym_doc_comment, + ACTIONS(3804), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54579] = 9, - ACTIONS(3722), 1, + [41240] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(939), 1, sym_declaration_list, @@ -115241,157 +113345,166 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2157), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [54608] = 6, - ACTIONS(3686), 1, + sym_doc_comment, + [41270] = 6, + ACTIONS(3684), 1, anon_sym_COLON_COLON, - ACTIONS(3814), 1, + ACTIONS(3812), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2542), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3456), 2, + ACTIONS(3454), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54631] = 8, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41294] = 8, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3819), 1, + ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(3821), 1, + ACTIONS(3819), 1, anon_sym_COMMA, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2112), 2, sym_field_pattern, sym_remaining_field_pattern, - [54658] = 4, - ACTIONS(3827), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41322] = 4, + ACTIONS(3825), 1, anon_sym_PLUS, STATE(1545), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + sym_doc_comment, + ACTIONS(3804), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54677] = 4, - ACTIONS(3829), 1, + [41342] = 4, + ACTIONS(3827), 1, anon_sym_PLUS, STATE(1545), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + sym_doc_comment, + ACTIONS(3804), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54696] = 8, + [41362] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, STATE(2292), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54723] = 6, - ACTIONS(3345), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41390] = 6, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3831), 1, + ACTIONS(3829), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [54746] = 8, - ACTIONS(2245), 1, + [41414] = 8, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3833), 1, + ACTIONS(3831), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3833), 1, sym_metavariable, STATE(1710), 1, sym_lifetime, STATE(1806), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2111), 2, sym_const_parameter, sym_optional_type_parameter, - [54773] = 8, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41442] = 8, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3837), 1, + ACTIONS(3835), 1, anon_sym_RBRACE, - ACTIONS(3839), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2027), 2, sym_field_pattern, sym_remaining_field_pattern, - [54800] = 9, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41470] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(330), 1, sym_declaration_list, @@ -115401,17 +113514,18 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2229), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [54829] = 9, - ACTIONS(3722), 1, + sym_doc_comment, + [41500] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(260), 1, sym_declaration_list, @@ -115421,172 +113535,182 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2144), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [54858] = 8, - ACTIONS(2245), 1, + sym_doc_comment, + [41530] = 8, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3833), 1, + ACTIONS(3831), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3833), 1, sym_metavariable, STATE(1702), 1, sym_lifetime, STATE(1806), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2111), 2, sym_const_parameter, sym_optional_type_parameter, - [54885] = 4, - ACTIONS(3808), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41558] = 4, + ACTIONS(3806), 1, anon_sym_PLUS, STATE(1569), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3841), 6, + sym_doc_comment, + ACTIONS(3839), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54904] = 8, + [41578] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, STATE(1919), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54931] = 8, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41606] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, STATE(2042), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54958] = 8, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41634] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, STATE(2159), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54985] = 5, - ACTIONS(3845), 1, - anon_sym_fn, - ACTIONS(3847), 1, - anon_sym_extern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, + [41662] = 5, + ACTIONS(3843), 1, + anon_sym_fn, + ACTIONS(3845), 1, + anon_sym_extern, STATE(1552), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3843), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3841), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55006] = 4, - ACTIONS(3403), 1, + [41684] = 4, + ACTIONS(3401), 1, anon_sym_trait, - ACTIONS(3849), 1, + ACTIONS(3847), 1, anon_sym_impl, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55025] = 8, + [41704] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, STATE(1860), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55052] = 5, - ACTIONS(3854), 1, - anon_sym_fn, - ACTIONS(3856), 1, - anon_sym_extern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, + [41732] = 5, + ACTIONS(3852), 1, + anon_sym_fn, + ACTIONS(3854), 1, + anon_sym_extern, STATE(1552), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3851), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3849), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55073] = 8, - ACTIONS(3859), 1, + [41754] = 8, + ACTIONS(3857), 1, anon_sym_LPAREN, - ACTIONS(3864), 1, + ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3865), 1, anon_sym_LBRACK, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -115594,50 +113718,53 @@ static const uint16_t ts_small_parse_table[] = { sym_token_tree_pattern, STATE(2495), 1, sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3862), 2, + ACTIONS(3860), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [55100] = 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41782] = 4, ACTIONS(736), 1, aux_sym_string_literal_token1, STATE(1561), 1, sym_string_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3528), 6, + sym_doc_comment, + ACTIONS(3526), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55119] = 4, - ACTIONS(3494), 1, + [41802] = 4, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3870), 1, + ACTIONS(3868), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55138] = 9, - ACTIONS(3722), 1, + [41822] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(928), 1, sym_declaration_list, @@ -115647,86 +113774,92 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2267), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55167] = 6, - ACTIONS(3345), 1, + sym_doc_comment, + [41852] = 6, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3432), 1, anon_sym_COLON_COLON, - ACTIONS(3488), 1, + ACTIONS(3486), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(3341), 3, anon_sym_EQ_GT, anon_sym_if, anon_sym_PIPE, - [55190] = 8, - ACTIONS(2245), 1, + [41876] = 8, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3706), 1, sym_metavariable, STATE(1833), 1, sym_lifetime, STATE(1990), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [55217] = 8, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41904] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, STATE(2122), 1, sym_enum_variant, STATE(2542), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55244] = 6, - ACTIONS(2249), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [41932] = 6, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3674), 1, sym_identifier, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, STATE(2132), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [55267] = 2, - ACTIONS(3), 2, + [41956] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3872), 8, + sym_doc_comment, + ACTIONS(3870), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115735,14 +113868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55282] = 9, - ACTIONS(3722), 1, + [41972] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(378), 1, sym_declaration_list, @@ -115752,102 +113885,108 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2226), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55311] = 8, - ACTIONS(2245), 1, + sym_doc_comment, + [42002] = 8, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_const, - ACTIONS(3874), 1, + ACTIONS(3872), 1, sym_identifier, - ACTIONS(3876), 1, + ACTIONS(3874), 1, sym_metavariable, STATE(1748), 1, sym_lifetime, STATE(1830), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2001), 2, sym_const_parameter, sym_optional_type_parameter, - [55338] = 6, - ACTIONS(3456), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42030] = 6, + ACTIONS(3454), 1, anon_sym_PIPE, - ACTIONS(3458), 1, + ACTIONS(3456), 1, anon_sym_COLON, - ACTIONS(3564), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2542), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [55361] = 4, - ACTIONS(2596), 1, + [42054] = 4, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, + ACTIONS(3876), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55380] = 4, + [42074] = 4, ACTIONS(888), 1, anon_sym_LBRACE, STATE(1435), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55399] = 8, + [42094] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2247), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3664), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3688), 1, sym_identifier, STATE(2215), 1, sym_field_declaration, STATE(2464), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55426] = 9, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42122] = 9, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, STATE(775), 1, sym_declaration_list, @@ -115857,47 +113996,51 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2174), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55455] = 4, - ACTIONS(3882), 1, + sym_doc_comment, + [42152] = 4, + ACTIONS(3880), 1, anon_sym_PLUS, STATE(1569), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 6, + sym_doc_comment, + ACTIONS(3878), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55474] = 7, - ACTIONS(2544), 1, + [42172] = 7, + ACTIONS(2542), 1, anon_sym_PLUS, - ACTIONS(3456), 1, + ACTIONS(3454), 1, anon_sym_PIPE, - ACTIONS(3458), 1, + ACTIONS(3456), 1, anon_sym_COLON, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3814), 2, + ACTIONS(3812), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55499] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42198] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + sym_doc_comment, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115905,11 +114048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55513] = 2, - ACTIONS(3), 2, + [42213] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + sym_doc_comment, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115917,11 +114061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55527] = 2, - ACTIONS(3), 2, + [42228] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + sym_doc_comment, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115929,14 +114074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55541] = 8, - ACTIONS(3885), 1, + [42243] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3887), 1, + ACTIONS(3885), 1, anon_sym_RPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, STATE(1588), 1, aux_sym_macro_definition_repeat1, @@ -115944,14 +114089,16 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55567] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [42270] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + sym_doc_comment, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115959,11 +114106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55581] = 2, - ACTIONS(3), 2, + [42285] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + sym_doc_comment, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115971,30 +114119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55595] = 6, - ACTIONS(3893), 1, + [42300] = 6, + ACTIONS(3891), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3895), 1, anon_sym_EQ, - ACTIONS(3899), 1, + ACTIONS(3897), 1, anon_sym_COLON_COLON, STATE(2009), 1, sym_meta_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + sym_doc_comment, + ACTIONS(3893), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55617] = 8, - ACTIONS(3885), 1, + [42323] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_RPAREN, STATE(1589), 1, aux_sym_macro_definition_repeat1, @@ -116002,34 +114151,36 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55643] = 7, - ACTIONS(3343), 1, + sym_doc_comment, + [42350] = 7, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(3345), 1, + ACTIONS(3343), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, + ACTIONS(3347), 1, anon_sym_COLON, - ACTIONS(3361), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55667] = 8, - ACTIONS(3718), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42375] = 8, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_SEMI, STATE(784), 1, sym_field_declaration_list, @@ -116037,30 +114188,33 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2171), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55693] = 6, - ACTIONS(3893), 1, + sym_doc_comment, + [42402] = 6, + ACTIONS(3891), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3895), 1, anon_sym_EQ, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_COLON_COLON, STATE(2009), 1, sym_meta_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + sym_doc_comment, + ACTIONS(3893), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55715] = 2, - ACTIONS(3), 2, + [42425] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3909), 7, + sym_doc_comment, + ACTIONS(3907), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116068,88 +114222,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55729] = 6, - ACTIONS(3893), 1, + [42440] = 6, + ACTIONS(3891), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3895), 1, anon_sym_EQ, - ACTIONS(3911), 1, + ACTIONS(3909), 1, anon_sym_COLON_COLON, STATE(2009), 1, sym_meta_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + sym_doc_comment, + ACTIONS(3893), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55751] = 6, - ACTIONS(3494), 1, + [42463] = 6, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3893), 1, + ACTIONS(3891), 1, anon_sym_LPAREN, - ACTIONS(3915), 1, + ACTIONS(3913), 1, anon_sym_EQ, STATE(2021), 1, sym_meta_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3913), 3, + sym_doc_comment, + ACTIONS(3911), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55773] = 6, - ACTIONS(3718), 1, + [42486] = 6, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3917), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3917), 2, + ACTIONS(3915), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2056), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [55795] = 3, - ACTIONS(2596), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42509] = 3, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55811] = 3, - ACTIONS(3921), 1, + [42526] = 3, + ACTIONS(3919), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + sym_doc_comment, + ACTIONS(3796), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55827] = 8, - ACTIONS(3885), 1, + [42543] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3921), 1, anon_sym_RPAREN, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116157,17 +114316,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55853] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [42570] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(3923), 1, anon_sym_RPAREN, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116175,77 +114335,82 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55879] = 7, + sym_doc_comment, + [42597] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3927), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [55903] = 7, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42622] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3929), 1, + ACTIONS(3927), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [55927] = 3, - ACTIONS(3931), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42647] = 3, + ACTIONS(3929), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + sym_doc_comment, + ACTIONS(3796), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55943] = 3, - ACTIONS(3933), 1, + [42664] = 3, + ACTIONS(3931), 1, anon_sym_trait, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55959] = 8, - ACTIONS(3885), 1, + [42681] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3933), 1, anon_sym_RPAREN, STATE(1602), 1, aux_sym_macro_definition_repeat1, @@ -116253,64 +114418,68 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [55985] = 3, - ACTIONS(3436), 1, + sym_doc_comment, + [42708] = 3, + ACTIONS(3434), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56001] = 7, + [42725] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3937), 1, + ACTIONS(3935), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [56025] = 7, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42750] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3939), 1, + ACTIONS(3937), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [56049] = 8, - ACTIONS(3885), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42775] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(3939), 1, anon_sym_RBRACE, STATE(1604), 1, aux_sym_macro_definition_repeat1, @@ -116318,17 +114487,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56075] = 8, - ACTIONS(3718), 1, + sym_doc_comment, + [42802] = 8, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, - ACTIONS(3943), 1, + ACTIONS(3941), 1, anon_sym_SEMI, STATE(366), 1, sym_field_declaration_list, @@ -116336,17 +114506,18 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2129), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56101] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [42829] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(3943), 1, anon_sym_RBRACE, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116354,33 +114525,35 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56127] = 6, - ACTIONS(3718), 1, + sym_doc_comment, + [42856] = 6, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3949), 1, + ACTIONS(3947), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3947), 2, + ACTIONS(3945), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(1917), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56149] = 8, - ACTIONS(3885), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [42879] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3951), 1, + ACTIONS(3949), 1, anon_sym_RPAREN, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116388,14 +114561,16 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56175] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [42906] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3953), 7, + sym_doc_comment, + ACTIONS(3951), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116403,14 +114578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56189] = 8, - ACTIONS(3885), 1, + [42921] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3955), 1, + ACTIONS(3953), 1, anon_sym_RBRACE, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116418,17 +114593,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56215] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [42948] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3955), 1, anon_sym_RBRACE, STATE(1600), 1, aux_sym_macro_definition_repeat1, @@ -116436,30 +114612,32 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56241] = 3, - ACTIONS(3959), 1, + sym_doc_comment, + [42975] = 3, + ACTIONS(3957), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + sym_doc_comment, + ACTIONS(3796), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56257] = 8, - ACTIONS(3885), 1, + [42992] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3961), 1, + ACTIONS(3959), 1, anon_sym_RBRACE, STATE(1610), 1, aux_sym_macro_definition_repeat1, @@ -116467,17 +114645,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56283] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [43019] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3961), 1, anon_sym_RBRACE, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116485,17 +114664,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56309] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [43046] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3965), 1, + ACTIONS(3963), 1, anon_sym_RPAREN, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116503,17 +114683,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56335] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [43073] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3967), 1, + ACTIONS(3965), 1, anon_sym_RBRACE, STATE(1553), 1, aux_sym_macro_definition_repeat1, @@ -116521,30 +114702,32 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56361] = 3, - ACTIONS(3969), 1, + sym_doc_comment, + [43100] = 3, + ACTIONS(3967), 1, anon_sym_trait, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + sym_doc_comment, + ACTIONS(2536), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56377] = 8, - ACTIONS(3718), 1, + [43117] = 8, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, - ACTIONS(3971), 1, + ACTIONS(3969), 1, anon_sym_SEMI, STATE(346), 1, sym_field_declaration_list, @@ -116552,17 +114735,18 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2138), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56403] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [43144] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3971), 1, anon_sym_RPAREN, STATE(1609), 1, aux_sym_macro_definition_repeat1, @@ -116570,17 +114754,18 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56429] = 8, - ACTIONS(3885), 1, + sym_doc_comment, + [43171] = 8, + ACTIONS(3883), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3887), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3889), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, + ACTIONS(3973), 1, anon_sym_RBRACE, STATE(1608), 1, aux_sym_macro_definition_repeat1, @@ -116588,30 +114773,32 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_rule, STATE(2488), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56455] = 3, - ACTIONS(3977), 1, + sym_doc_comment, + [43198] = 3, + ACTIONS(3975), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + sym_doc_comment, + ACTIONS(3796), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56471] = 8, - ACTIONS(3718), 1, + [43215] = 8, + ACTIONS(3716), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3979), 1, + ACTIONS(3977), 1, anon_sym_SEMI, STATE(968), 1, sym_field_declaration_list, @@ -116619,47 +114806,50 @@ static const uint16_t ts_small_parse_table[] = { sym_ordered_field_declaration_list, STATE(2167), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56497] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43242] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3981), 1, + ACTIONS(3979), 1, anon_sym_SEMI, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, STATE(816), 1, sym_declaration_list, STATE(2098), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56520] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43266] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3985), 1, + ACTIONS(3983), 1, anon_sym_SEMI, STATE(454), 1, sym_declaration_list, STATE(1882), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56543] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43290] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(923), 1, sym_enum_variant_list, @@ -116667,44 +114857,47 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2147), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56566] = 4, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2648), 2, + sym_doc_comment, + [43314] = 4, + ACTIONS(2646), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3646), 2, + ACTIONS(3644), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3989), 2, + ACTIONS(3987), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56583] = 7, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [43332] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_SEMI, STATE(941), 1, sym_declaration_list, STATE(2100), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56606] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43356] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(961), 1, sym_declaration_list, @@ -116712,150 +114905,160 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2163), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56629] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [43380] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3790), 1, + ACTIONS(3788), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56646] = 7, - ACTIONS(3722), 1, + [43398] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3994), 1, + ACTIONS(3992), 1, anon_sym_SEMI, STATE(1004), 1, sym_declaration_list, STATE(2076), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56669] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43422] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3996), 1, + ACTIONS(3994), 1, anon_sym_SEMI, STATE(451), 1, sym_declaration_list, STATE(1967), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56692] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43446] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3998), 1, + ACTIONS(3996), 1, anon_sym_SEMI, STATE(447), 1, sym_declaration_list, STATE(1920), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56715] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43470] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4000), 1, + ACTIONS(3998), 1, anon_sym_SEMI, STATE(335), 1, sym_declaration_list, STATE(2088), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56738] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [43494] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3780), 1, + ACTIONS(3778), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56755] = 7, - ACTIONS(3722), 1, + [43512] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4002), 1, + ACTIONS(4000), 1, anon_sym_SEMI, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4006), 1, + ACTIONS(4004), 1, anon_sym_DASH_GT, STATE(1025), 1, sym_block, STATE(2062), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56778] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [43536] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3788), 1, + ACTIONS(3786), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56795] = 7, - ACTIONS(3722), 1, + [43554] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4008), 1, + ACTIONS(4006), 1, anon_sym_SEMI, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, STATE(423), 1, sym_block, STATE(1883), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56818] = 7, - ACTIONS(3720), 1, + sym_doc_comment, + [43578] = 7, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(917), 1, sym_field_declaration_list, @@ -116863,15 +115066,16 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2140), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56841] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43602] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(355), 1, sym_declaration_list, @@ -116879,60 +115083,64 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2221), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56864] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43626] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4012), 1, + ACTIONS(4010), 1, anon_sym_SEMI, STATE(404), 1, sym_declaration_list, STATE(1939), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56887] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [43650] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, + ACTIONS(3780), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56904] = 7, - ACTIONS(3237), 1, + [43668] = 7, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4014), 1, + ACTIONS(4012), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4014), 1, anon_sym_STAR, STATE(2059), 1, sym_use_list, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56927] = 7, - ACTIONS(3720), 1, + sym_doc_comment, + [43692] = 7, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(937), 1, sym_field_declaration_list, @@ -116940,230 +115148,245 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2255), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56950] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43716] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4018), 1, + ACTIONS(4016), 1, anon_sym_SEMI, STATE(299), 1, sym_block, STATE(1876), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56973] = 7, - ACTIONS(3446), 1, + sym_doc_comment, + [43740] = 7, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4020), 1, + ACTIONS(4018), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(4020), 1, anon_sym_GT, STATE(1994), 1, sym_trait_bounds, STATE(2071), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [56996] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43764] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4024), 1, + ACTIONS(4022), 1, anon_sym_SEMI, STATE(396), 1, sym_declaration_list, STATE(1938), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57019] = 7, - ACTIONS(3810), 1, + sym_doc_comment, + [43788] = 7, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, - ACTIONS(4026), 1, + ACTIONS(4024), 1, anon_sym_SEMI, - ACTIONS(4028), 1, + ACTIONS(4026), 1, anon_sym_EQ, STATE(1826), 1, sym_type_parameters, STATE(2412), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57042] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [43812] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3774), 1, + ACTIONS(3772), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57059] = 7, - ACTIONS(3722), 1, + [43830] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4030), 1, + ACTIONS(4028), 1, anon_sym_SEMI, STATE(300), 1, sym_block, STATE(1894), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57082] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43854] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4032), 1, + ACTIONS(4030), 1, anon_sym_SEMI, STATE(424), 1, sym_declaration_list, STATE(2008), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57105] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43878] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, + ACTIONS(4032), 1, anon_sym_SEMI, - ACTIONS(4036), 1, + ACTIONS(4034), 1, anon_sym_DASH_GT, STATE(890), 1, sym_block, STATE(2115), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57128] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43902] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4038), 1, + ACTIONS(4036), 1, anon_sym_SEMI, STATE(895), 1, sym_declaration_list, STATE(2007), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57151] = 4, - ACTIONS(4040), 1, + sym_doc_comment, + [43926] = 4, + ACTIONS(4038), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2542), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [57168] = 7, - ACTIONS(3237), 1, + [43944] = 7, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4014), 1, + ACTIONS(4012), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4014), 1, anon_sym_STAR, STATE(2059), 1, sym_use_list, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57191] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43968] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4042), 1, + ACTIONS(4040), 1, anon_sym_SEMI, STATE(874), 1, sym_declaration_list, STATE(2110), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57214] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [43992] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4044), 1, + ACTIONS(4042), 1, anon_sym_SEMI, STATE(479), 1, sym_declaration_list, STATE(2053), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57237] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [44016] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3734), 1, + ACTIONS(3732), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57254] = 7, - ACTIONS(3722), 1, + [44034] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(276), 1, sym_enum_variant_list, @@ -117171,78 +115394,83 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2264), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57277] = 6, + sym_doc_comment, + [44058] = 6, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3815), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3821), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3823), 1, sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [57298] = 7, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [44080] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4048), 1, + ACTIONS(4046), 1, anon_sym_SEMI, STATE(859), 1, sym_declaration_list, STATE(2109), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57321] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44104] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4050), 1, + ACTIONS(4048), 1, anon_sym_SEMI, STATE(415), 1, sym_declaration_list, STATE(2004), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57344] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44128] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4052), 1, + ACTIONS(4050), 1, anon_sym_SEMI, STATE(305), 1, sym_block, STATE(2024), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57367] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44152] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(847), 1, sym_enum_variant_list, @@ -117250,15 +115478,16 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2284), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57390] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44176] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(798), 1, sym_declaration_list, @@ -117266,59 +115495,63 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2161), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57413] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44200] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, + ACTIONS(4052), 1, anon_sym_SEMI, - ACTIONS(4056), 1, + ACTIONS(4054), 1, anon_sym_DASH_GT, STATE(794), 1, sym_block, STATE(2093), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57436] = 3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, + sym_doc_comment, + [44224] = 3, + ACTIONS(3644), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2648), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2646), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [57451] = 7, - ACTIONS(3722), 1, + [44240] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4058), 1, + ACTIONS(4056), 1, anon_sym_SEMI, - ACTIONS(4060), 1, + ACTIONS(4058), 1, anon_sym_DASH_GT, STATE(338), 1, sym_block, STATE(1930), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57474] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44264] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(395), 1, sym_declaration_list, @@ -117326,165 +115559,176 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2200), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57497] = 5, - ACTIONS(4064), 1, + sym_doc_comment, + [44288] = 5, + ACTIONS(4062), 1, anon_sym_COLON, - ACTIONS(4066), 1, + ACTIONS(4064), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4060), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57516] = 7, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [44308] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4068), 1, + ACTIONS(4066), 1, anon_sym_SEMI, STATE(349), 1, sym_declaration_list, STATE(2118), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57539] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [44332] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3710), 1, + ACTIONS(3708), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57556] = 7, - ACTIONS(3722), 1, + [44350] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4070), 1, + ACTIONS(4068), 1, anon_sym_SEMI, STATE(430), 1, sym_declaration_list, STATE(1956), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57579] = 4, - ACTIONS(4072), 1, + sym_doc_comment, + [44374] = 4, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2542), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [57596] = 5, - ACTIONS(4072), 1, + [44392] = 5, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - ACTIONS(4076), 1, + ACTIONS(4074), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4074), 2, + ACTIONS(4072), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57615] = 7, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [44412] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, + ACTIONS(4076), 1, anon_sym_SEMI, - ACTIONS(4080), 1, + ACTIONS(4078), 1, anon_sym_DASH_GT, STATE(393), 1, sym_block, STATE(1875), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57638] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44436] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4082), 1, + ACTIONS(4080), 1, anon_sym_SEMI, STATE(785), 1, sym_block, STATE(2083), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57661] = 7, - ACTIONS(2405), 1, + sym_doc_comment, + [44460] = 7, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4084), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4084), 1, anon_sym_GT, STATE(1963), 1, sym_trait_bounds, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57684] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44484] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4088), 1, + ACTIONS(4086), 1, anon_sym_SEMI, STATE(813), 1, sym_declaration_list, STATE(2082), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57707] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44508] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(317), 1, sym_declaration_list, @@ -117492,110 +115736,117 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2271), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57730] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44532] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4090), 1, + ACTIONS(4088), 1, anon_sym_SEMI, STATE(815), 1, sym_declaration_list, STATE(2077), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57753] = 6, - ACTIONS(3115), 1, + sym_doc_comment, + [44556] = 6, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(4084), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4084), 1, anon_sym_GT, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2542), 2, anon_sym_PLUS, anon_sym_as, - [57774] = 7, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [44578] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(4090), 1, anon_sym_SEMI, - ACTIONS(4094), 1, + ACTIONS(4092), 1, anon_sym_DASH_GT, STATE(307), 1, sym_block, STATE(1929), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57797] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44602] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4094), 1, anon_sym_SEMI, STATE(849), 1, sym_declaration_list, STATE(2067), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57820] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44626] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4098), 1, + ACTIONS(4096), 1, anon_sym_SEMI, STATE(860), 1, sym_declaration_list, STATE(2057), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57843] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44650] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - ACTIONS(4102), 1, + ACTIONS(4100), 1, anon_sym_DASH_GT, STATE(870), 1, sym_block, STATE(1861), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57866] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44674] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(902), 1, sym_declaration_list, @@ -117603,47 +115854,50 @@ static const uint16_t ts_small_parse_table[] = { sym_trait_bounds, STATE(2207), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57889] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44698] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4104), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - ACTIONS(4106), 1, + ACTIONS(4104), 1, anon_sym_DASH_GT, STATE(912), 1, sym_block, STATE(2054), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57912] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44722] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4108), 1, + ACTIONS(4106), 1, anon_sym_SEMI, STATE(934), 1, sym_block, STATE(2050), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57935] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44746] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(263), 1, sym_enum_variant_list, @@ -117651,44 +115905,47 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2202), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57958] = 4, - ACTIONS(3440), 1, + sym_doc_comment, + [44770] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3776), 1, + ACTIONS(3774), 1, anon_sym_for, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + sym_doc_comment, + ACTIONS(2542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57975] = 7, - ACTIONS(3722), 1, + [44788] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4110), 1, + ACTIONS(4108), 1, anon_sym_SEMI, STATE(984), 1, sym_declaration_list, STATE(2045), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [57998] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44812] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(292), 1, sym_field_declaration_list, @@ -117696,245 +115953,261 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2187), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58021] = 4, - ACTIONS(3989), 1, + sym_doc_comment, + [44836] = 4, + ACTIONS(3987), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3646), 2, + ACTIONS(3644), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2648), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2646), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [58038] = 4, - ACTIONS(4112), 1, + [44854] = 4, + ACTIONS(4110), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3594), 2, + ACTIONS(3592), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2688), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2686), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [58055] = 7, - ACTIONS(3722), 1, + [44872] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4115), 1, + ACTIONS(4113), 1, anon_sym_SEMI, STATE(302), 1, sym_block, STATE(1878), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58078] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44896] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4117), 1, + ACTIONS(4115), 1, anon_sym_SEMI, STATE(986), 1, sym_declaration_list, STATE(2044), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58101] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44920] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4119), 1, + ACTIONS(4117), 1, anon_sym_SEMI, STATE(999), 1, sym_block, STATE(2043), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58124] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44944] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4119), 1, anon_sym_SEMI, - ACTIONS(4123), 1, + ACTIONS(4121), 1, anon_sym_DASH_GT, STATE(1023), 1, sym_block, STATE(2040), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58147] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44968] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, + ACTIONS(4123), 1, anon_sym_SEMI, STATE(974), 1, sym_block, STATE(2038), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58170] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [44992] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, + ACTIONS(4125), 1, anon_sym_SEMI, STATE(942), 1, sym_block, STATE(2036), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58193] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45016] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4127), 1, anon_sym_SEMI, STATE(901), 1, sym_block, STATE(2034), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58216] = 7, - ACTIONS(3810), 1, + sym_doc_comment, + [45040] = 7, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3810), 1, anon_sym_LT, - ACTIONS(4131), 1, + ACTIONS(4129), 1, anon_sym_SEMI, - ACTIONS(4133), 1, + ACTIONS(4131), 1, anon_sym_EQ, STATE(1824), 1, sym_type_parameters, STATE(2396), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58239] = 3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, + sym_doc_comment, + [45064] = 3, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2688), 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2686), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [58254] = 7, - ACTIONS(3722), 1, + [45080] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4135), 1, + ACTIONS(4133), 1, anon_sym_SEMI, STATE(459), 1, sym_declaration_list, STATE(1881), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58277] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45104] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, + ACTIONS(4135), 1, anon_sym_SEMI, STATE(256), 1, sym_block, STATE(1905), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58300] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45128] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4139), 1, + ACTIONS(4137), 1, anon_sym_SEMI, - ACTIONS(4141), 1, + ACTIONS(4139), 1, anon_sym_DASH_GT, STATE(271), 1, sym_block, STATE(2023), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58323] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45152] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4143), 1, + ACTIONS(4141), 1, anon_sym_SEMI, - ACTIONS(4145), 1, + ACTIONS(4143), 1, anon_sym_DASH_GT, STATE(379), 1, sym_block, STATE(2017), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58346] = 7, - ACTIONS(3810), 1, + sym_doc_comment, + [45176] = 7, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4145), 1, anon_sym_COMMA, - ACTIONS(4149), 1, + ACTIONS(4147), 1, anon_sym_GT, STATE(1963), 1, sym_trait_bounds, @@ -117942,31 +116215,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_lifetimes_repeat1, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58369] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45200] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - ACTIONS(4153), 1, + ACTIONS(4151), 1, anon_sym_DASH_GT, STATE(388), 1, sym_block, STATE(1949), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58392] = 7, - ACTIONS(3722), 1, + sym_doc_comment, + [45224] = 7, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(386), 1, sym_field_declaration_list, @@ -117974,9138 +116249,9864 @@ static const uint16_t ts_small_parse_table[] = { sym_type_parameters, STATE(2240), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58415] = 4, - ACTIONS(4155), 1, + sym_doc_comment, + [45248] = 4, + ACTIONS(4153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2542), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [58432] = 7, - ACTIONS(3446), 1, + [45266] = 7, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3450), 1, + ACTIONS(3448), 1, anon_sym_GT, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1992), 1, aux_sym_type_parameters_repeat1, STATE(1994), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58455] = 5, - ACTIONS(4076), 1, + sym_doc_comment, + [45290] = 5, + ACTIONS(4074), 1, anon_sym_COLON, - ACTIONS(4155), 1, + ACTIONS(4153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4074), 2, + ACTIONS(4072), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58474] = 4, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2688), 2, + sym_doc_comment, + [45310] = 4, + ACTIONS(2686), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3594), 2, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4112), 2, + ACTIONS(4110), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58491] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45328] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4157), 5, + sym_doc_comment, + ACTIONS(4155), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58503] = 6, - ACTIONS(3810), 1, + [45341] = 6, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4084), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4084), 1, anon_sym_GT, STATE(1963), 1, sym_trait_bounds, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58523] = 4, - ACTIONS(4161), 1, + sym_doc_comment, + [45362] = 4, + ACTIONS(4159), 1, anon_sym_as, - ACTIONS(4163), 1, + ACTIONS(4161), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + sym_doc_comment, + ACTIONS(4157), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58539] = 4, - ACTIONS(4161), 1, + [45379] = 4, + ACTIONS(4159), 1, anon_sym_as, - ACTIONS(4165), 1, + ACTIONS(4163), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + sym_doc_comment, + ACTIONS(4157), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58555] = 5, - ACTIONS(3560), 1, + [45396] = 5, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58573] = 5, - ACTIONS(4167), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45415] = 5, + ACTIONS(4165), 1, anon_sym_RPAREN, - ACTIONS(4169), 1, + ACTIONS(4167), 1, anon_sym_COMMA, STATE(1903), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - [58591] = 4, - ACTIONS(4161), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45434] = 4, + ACTIONS(4159), 1, anon_sym_as, - ACTIONS(4171), 1, + ACTIONS(4169), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + sym_doc_comment, + ACTIONS(4157), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58607] = 2, - ACTIONS(3), 2, + [45451] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4173), 5, + sym_doc_comment, + ACTIONS(4171), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58619] = 4, - ACTIONS(4177), 1, + [45464] = 4, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4179), 1, + ACTIONS(4177), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4175), 3, + sym_doc_comment, + ACTIONS(4173), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58635] = 2, - ACTIONS(3), 2, + [45481] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4181), 5, + sym_doc_comment, + ACTIONS(4179), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58647] = 2, - ACTIONS(3), 2, + [45494] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2829), 5, + sym_doc_comment, + ACTIONS(2827), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58659] = 2, - ACTIONS(3), 2, + [45507] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2821), 5, + sym_doc_comment, + ACTIONS(2819), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58671] = 4, + [45520] = 4, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(4183), 1, + ACTIONS(4181), 1, anon_sym_if, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, STATE(226), 3, sym_if_expression, sym_if_let_expression, sym_block, - [58687] = 6, - ACTIONS(3355), 1, + [45537] = 6, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_COLON, STATE(1343), 1, sym_type_arguments, STATE(1926), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58707] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [45558] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4185), 5, + sym_doc_comment, + ACTIONS(4183), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58719] = 6, - ACTIONS(4187), 1, + [45571] = 6, + ACTIONS(4185), 1, anon_sym_RPAREN, - ACTIONS(4189), 1, + ACTIONS(4187), 1, anon_sym_COLON, - ACTIONS(4191), 1, + ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4193), 1, + ACTIONS(4191), 1, anon_sym_PIPE, STATE(1975), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58739] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [45592] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4195), 5, + sym_doc_comment, + ACTIONS(4193), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58751] = 4, - ACTIONS(4197), 1, + [45605] = 4, + ACTIONS(4195), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2865), 2, + ACTIONS(2863), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3566), 2, + ACTIONS(3564), 2, anon_sym_COMMA, anon_sym_PIPE, - [58767] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45622] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3862), 5, + sym_doc_comment, + ACTIONS(3860), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - [58779] = 5, - ACTIONS(3560), 1, + [45635] = 5, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58797] = 5, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45654] = 5, ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4198), 1, anon_sym_COMMA, STATE(2084), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - [58815] = 5, - ACTIONS(4202), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45673] = 5, + ACTIONS(4200), 1, anon_sym_RPAREN, - ACTIONS(4205), 1, + ACTIONS(4203), 1, anon_sym_COMMA, STATE(1903), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - [58833] = 3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, + sym_doc_comment, + [45692] = 3, + ACTIONS(3564), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2865), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(2863), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [58847] = 4, - ACTIONS(4155), 1, + [45707] = 4, + ACTIONS(4153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4060), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58863] = 4, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [45724] = 4, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4060), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58879] = 5, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45741] = 5, ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4208), 1, + ACTIONS(4206), 1, anon_sym_COMMA, STATE(2028), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - [58897] = 6, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45760] = 6, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, STATE(1343), 1, sym_type_arguments, STATE(1365), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [58917] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [45781] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2793), 5, + sym_doc_comment, + ACTIONS(2791), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58929] = 2, - ACTIONS(3), 2, + [45794] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2875), 5, + sym_doc_comment, + ACTIONS(2873), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58941] = 4, - ACTIONS(4072), 1, + [45807] = 4, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, + ACTIONS(4208), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58957] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45824] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2762), 5, + sym_doc_comment, + ACTIONS(2760), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58969] = 2, - ACTIONS(3), 2, + [45837] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2809), 5, + sym_doc_comment, + ACTIONS(2807), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58981] = 2, - ACTIONS(3), 2, + [45850] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4212), 5, + sym_doc_comment, + ACTIONS(4210), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58993] = 2, - ACTIONS(3), 2, + [45863] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4214), 5, + sym_doc_comment, + ACTIONS(4212), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59005] = 2, - ACTIONS(3), 2, + [45876] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4216), 5, + sym_doc_comment, + ACTIONS(4214), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59017] = 2, - ACTIONS(3), 2, + [45889] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4218), 5, + sym_doc_comment, + ACTIONS(4216), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59029] = 2, - ACTIONS(3), 2, + [45902] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4220), 5, + sym_doc_comment, + ACTIONS(4218), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59041] = 4, + [45915] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4222), 1, + ACTIONS(4220), 1, anon_sym_if, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, STATE(1122), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59057] = 5, - ACTIONS(4224), 1, + [45932] = 5, + ACTIONS(4222), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4224), 1, anon_sym_COMMA, STATE(2119), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - [59075] = 6, - ACTIONS(3810), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [45951] = 6, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4228), 1, + ACTIONS(4226), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4228), 1, anon_sym_GT, STATE(1963), 1, sym_trait_bounds, STATE(2073), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59095] = 3, - ACTIONS(4232), 1, + sym_doc_comment, + [45972] = 3, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(2616), 4, + sym_doc_comment, + ACTIONS(2614), 4, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, anon_sym_COLON_COLON, - [59109] = 4, - ACTIONS(2865), 1, + [45987] = 4, + ACTIONS(2863), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3566), 2, + ACTIONS(3564), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4197), 2, + ACTIONS(4195), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59125] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4234), 5, + sym_doc_comment, + [46004] = 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(4232), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59137] = 2, - ACTIONS(3), 2, + [46017] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4236), 5, + sym_doc_comment, + ACTIONS(4234), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59149] = 5, - ACTIONS(3446), 1, + [46030] = 5, + ACTIONS(3444), 1, anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1994), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4238), 2, + ACTIONS(4236), 2, anon_sym_COMMA, anon_sym_GT, - [59167] = 4, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [46049] = 4, + ACTIONS(4153), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, + ACTIONS(4208), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59183] = 6, - ACTIONS(2484), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46066] = 6, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, STATE(990), 1, sym_parameters, STATE(1343), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59203] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [46087] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4240), 5, + sym_doc_comment, + ACTIONS(4238), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59215] = 2, - ACTIONS(3), 2, + [46100] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4242), 5, + sym_doc_comment, + ACTIONS(4240), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59227] = 4, + [46113] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4244), 1, + ACTIONS(4242), 1, anon_sym_if, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, STATE(73), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59243] = 5, - ACTIONS(3237), 1, + [46130] = 5, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(4246), 1, + ACTIONS(4244), 1, sym_identifier, - ACTIONS(4248), 1, + ACTIONS(4246), 1, anon_sym_STAR, STATE(2080), 1, sym_use_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59260] = 5, - ACTIONS(3359), 1, + sym_doc_comment, + [46148] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1676), 1, sym_parameters, STATE(2151), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59277] = 4, - ACTIONS(3810), 1, + sym_doc_comment, + [46166] = 4, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1963), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(4248), 2, anon_sym_COMMA, anon_sym_GT, - [59292] = 4, - ACTIONS(3), 1, + ACTIONS(3), 3, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4253), 1, + sym_doc_comment, + [46182] = 3, + ACTIONS(4251), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4255), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(4253), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59307] = 4, - ACTIONS(3562), 1, + [46196] = 4, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59322] = 4, - ACTIONS(4257), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46212] = 4, + ACTIONS(4255), 1, anon_sym_DQUOTE, STATE(1784), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4259), 2, + ACTIONS(4257), 2, sym__string_content, sym_escape_sequence, - [59337] = 4, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3686), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + sym_doc_comment, + [46228] = 4, + ACTIONS(3560), 1, + anon_sym_BANG, + ACTIONS(3684), 1, + anon_sym_COLON_COLON, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59352] = 5, - ACTIONS(4261), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46244] = 5, + ACTIONS(4259), 1, anon_sym_LPAREN, - ACTIONS(4263), 1, + ACTIONS(4261), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4263), 1, anon_sym_LBRACK, STATE(96), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59369] = 5, - ACTIONS(3359), 1, + sym_doc_comment, + [46262] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1700), 1, sym_parameters, STATE(2262), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59386] = 5, - ACTIONS(3359), 1, + sym_doc_comment, + [46280] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1681), 1, sym_parameters, STATE(2239), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59403] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [46298] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4267), 1, + ACTIONS(4265), 1, anon_sym_RPAREN, - ACTIONS(4269), 1, + ACTIONS(4267), 1, anon_sym_COMMA, STATE(2033), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59420] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + sym_doc_comment, + [46316] = 3, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4271), 2, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59433] = 4, - ACTIONS(3), 1, + ACTIONS(3), 3, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4273), 1, + sym_doc_comment, + [46330] = 3, + ACTIONS(4271), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4275), 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(4273), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59448] = 4, - ACTIONS(3), 1, + [46344] = 3, + ACTIONS(4275), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(3), 3, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4277), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4279), 3, + sym_doc_comment, + ACTIONS(4277), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59463] = 5, - ACTIONS(3722), 1, + [46358] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(283), 1, sym_declaration_list, STATE(2179), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59480] = 5, - ACTIONS(3359), 1, + sym_doc_comment, + [46376] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1659), 1, sym_parameters, STATE(2253), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59497] = 5, - ACTIONS(4193), 1, + sym_doc_comment, + [46394] = 5, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4281), 1, + ACTIONS(4279), 1, anon_sym_SEMI, - ACTIONS(4283), 1, + ACTIONS(4281), 1, anon_sym_COLON, - ACTIONS(4285), 1, + ACTIONS(4283), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59514] = 3, - ACTIONS(4287), 1, + sym_doc_comment, + [46412] = 3, + ACTIONS(4285), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4289), 3, + sym_doc_comment, + ACTIONS(4287), 3, sym_self, sym_super, sym_crate, - [59527] = 3, - ACTIONS(4291), 1, + [46426] = 3, + ACTIONS(4289), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4293), 3, + sym_doc_comment, + ACTIONS(4291), 3, sym_self, sym_super, sym_crate, - [59540] = 5, - ACTIONS(3983), 1, + [46440] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4295), 1, + ACTIONS(4293), 1, anon_sym_RPAREN, - ACTIONS(4297), 1, + ACTIONS(4295), 1, anon_sym_COMMA, STATE(1889), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59557] = 5, - ACTIONS(3359), 1, + sym_doc_comment, + [46458] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1629), 1, sym_parameters, STATE(2288), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59574] = 4, - ACTIONS(3460), 1, + sym_doc_comment, + [46476] = 4, + ACTIONS(3458), 1, anon_sym_COLON_COLON, - ACTIONS(3560), 1, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59589] = 4, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(3878), 1, - anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + sym_doc_comment, + [46492] = 4, + ACTIONS(3458), 1, + anon_sym_COLON_COLON, + ACTIONS(3876), 1, + anon_sym_BANG, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59604] = 4, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [46508] = 4, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, + ACTIONS(4074), 1, + anon_sym_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59619] = 5, - ACTIONS(4189), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46524] = 5, + ACTIONS(4187), 1, anon_sym_COLON, - ACTIONS(4299), 1, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4301), 1, + ACTIONS(4299), 1, anon_sym_PIPE, STATE(1922), 1, aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59636] = 4, - ACTIONS(4303), 1, + sym_doc_comment, + [46542] = 4, + ACTIONS(4301), 1, anon_sym_DQUOTE, STATE(1852), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4303), 2, sym__string_content, sym_escape_sequence, - [59651] = 5, - ACTIONS(4261), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46558] = 5, + ACTIONS(4259), 1, anon_sym_LPAREN, - ACTIONS(4263), 1, + ACTIONS(4261), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4263), 1, anon_sym_LBRACK, STATE(148), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59668] = 5, - ACTIONS(4307), 1, + sym_doc_comment, + [46576] = 5, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4307), 1, anon_sym_LBRACE, - ACTIONS(4311), 1, + ACTIONS(4309), 1, anon_sym_LBRACK, STATE(833), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59685] = 5, - ACTIONS(4307), 1, + sym_doc_comment, + [46594] = 5, + ACTIONS(4305), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4307), 1, anon_sym_LBRACE, - ACTIONS(4311), 1, + ACTIONS(4309), 1, anon_sym_LBRACK, STATE(834), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59702] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [46612] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4046), 1, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(306), 1, sym_enum_variant_list, STATE(2135), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59719] = 5, - ACTIONS(4193), 1, + sym_doc_comment, + [46630] = 5, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4313), 1, + ACTIONS(4311), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4313), 1, anon_sym_COMMA, STATE(1904), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59736] = 5, - ACTIONS(4317), 1, + sym_doc_comment, + [46648] = 5, + ACTIONS(4315), 1, anon_sym_LPAREN, - ACTIONS(4319), 1, + ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, + ACTIONS(4319), 1, anon_sym_LBRACK, STATE(1385), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59753] = 4, - ACTIONS(4323), 1, + sym_doc_comment, + [46666] = 4, + ACTIONS(4321), 1, anon_sym_DQUOTE, STATE(1852), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4303), 2, sym__string_content, sym_escape_sequence, - [59768] = 5, - ACTIONS(4193), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46682] = 5, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4325), 1, + ACTIONS(4323), 1, anon_sym_RBRACK, - ACTIONS(4327), 1, + ACTIONS(4325), 1, anon_sym_COMMA, STATE(2060), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59785] = 5, - ACTIONS(4317), 1, + sym_doc_comment, + [46700] = 5, + ACTIONS(4315), 1, anon_sym_LPAREN, - ACTIONS(4319), 1, + ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, + ACTIONS(4319), 1, anon_sym_LBRACK, STATE(1378), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59802] = 4, - ACTIONS(4329), 1, + sym_doc_comment, + [46718] = 4, + ACTIONS(4327), 1, anon_sym_DQUOTE, STATE(1791), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4331), 2, + ACTIONS(4329), 2, sym__string_content, sym_escape_sequence, - [59817] = 3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + sym_doc_comment, + [46734] = 3, + ACTIONS(3341), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4333), 2, + ACTIONS(4331), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59830] = 4, - ACTIONS(4337), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46748] = 4, + ACTIONS(4335), 1, anon_sym_COMMA, STATE(1796), 1, aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4335), 2, + ACTIONS(4333), 2, anon_sym_SEMI, anon_sym_LBRACE, - [59845] = 5, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [46764] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(1015), 1, sym_declaration_list, STATE(2225), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59862] = 5, - ACTIONS(2405), 1, + sym_doc_comment, + [46782] = 5, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(4340), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4340), 1, anon_sym_GT, STATE(1966), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59879] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [46800] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4340), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4340), 1, anon_sym_GT, STATE(1966), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59896] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [46818] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(468), 1, sym_declaration_list, STATE(2218), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59913] = 4, - ACTIONS(3), 1, + sym_doc_comment, + [46836] = 3, + ACTIONS(4342), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(3), 3, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4344), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4346), 3, + sym_doc_comment, + ACTIONS(4344), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59928] = 5, - ACTIONS(3983), 1, + [46850] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4348), 1, + ACTIONS(4346), 1, anon_sym_RPAREN, - ACTIONS(4350), 1, + ACTIONS(4348), 1, anon_sym_COMMA, STATE(2026), 1, aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59945] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [46868] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(900), 1, sym_declaration_list, STATE(2206), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59962] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [46886] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(864), 1, sym_declaration_list, STATE(2201), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59979] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [46904] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(318), 1, sym_declaration_list, STATE(2272), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [59996] = 5, - ACTIONS(4084), 1, + sym_doc_comment, + [46922] = 5, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4084), 1, anon_sym_GT, - ACTIONS(4352), 1, + ACTIONS(4350), 1, anon_sym_EQ, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60013] = 5, + sym_doc_comment, + [46940] = 5, ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4200), 1, + ACTIONS(4198), 1, anon_sym_COMMA, STATE(2084), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60030] = 5, - ACTIONS(3355), 1, + sym_doc_comment, + [46958] = 5, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1346), 1, sym_type_arguments, STATE(1360), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60047] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [46976] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4354), 3, + sym_doc_comment, + ACTIONS(4352), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60060] = 5, - ACTIONS(3720), 1, + [46990] = 5, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, STATE(780), 1, sym_field_declaration_list, STATE(2173), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60077] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [47008] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4356), 3, + sym_doc_comment, + ACTIONS(4354), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60090] = 5, - ACTIONS(3722), 1, + [47022] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(410), 1, sym_declaration_list, STATE(2210), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60107] = 5, - ACTIONS(4187), 1, + sym_doc_comment, + [47040] = 5, + ACTIONS(4185), 1, anon_sym_RPAREN, - ACTIONS(4191), 1, + ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4193), 1, + ACTIONS(4191), 1, anon_sym_PIPE, STATE(1975), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60124] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47058] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(791), 1, sym_enum_variant_list, STATE(2168), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60141] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47076] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(801), 1, sym_declaration_list, STATE(2160), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60158] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47094] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(821), 1, sym_declaration_list, STATE(2155), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60175] = 4, - ACTIONS(3562), 1, + sym_doc_comment, + [47112] = 4, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60190] = 5, - ACTIONS(3642), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47128] = 5, + ACTIONS(3640), 1, anon_sym_PIPE, - ACTIONS(4358), 1, + ACTIONS(4356), 1, anon_sym_SEMI, - ACTIONS(4360), 1, + ACTIONS(4358), 1, anon_sym_COLON, - ACTIONS(4362), 1, + ACTIONS(4360), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60207] = 5, - ACTIONS(2405), 1, + sym_doc_comment, + [47146] = 5, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(4364), 1, + ACTIONS(4362), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4364), 1, anon_sym_GT, STATE(2113), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60224] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [47164] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4364), 1, + ACTIONS(4362), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4364), 1, anon_sym_GT, STATE(2113), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60241] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47182] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(367), 1, sym_declaration_list, STATE(2287), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60258] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [47200] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4224), 1, + ACTIONS(4222), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4224), 1, anon_sym_COMMA, STATE(2119), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60275] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47218] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(356), 1, sym_declaration_list, STATE(2153), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60292] = 5, - ACTIONS(3810), 1, + sym_doc_comment, + [47236] = 5, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4368), 1, + ACTIONS(4366), 1, anon_sym_SEMI, - ACTIONS(4370), 1, + ACTIONS(4368), 1, anon_sym_EQ, STATE(2482), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60309] = 5, - ACTIONS(3720), 1, + sym_doc_comment, + [47254] = 5, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_where, STATE(951), 1, sym_field_declaration_list, STATE(2158), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60326] = 5, - ACTIONS(3810), 1, + sym_doc_comment, + [47272] = 5, + ACTIONS(3808), 1, anon_sym_COLON, - ACTIONS(4372), 1, + ACTIONS(4370), 1, anon_sym_SEMI, - ACTIONS(4374), 1, + ACTIONS(4372), 1, anon_sym_EQ, STATE(2511), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60343] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47290] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(962), 1, sym_declaration_list, STATE(2166), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60360] = 5, - ACTIONS(3642), 1, + sym_doc_comment, + [47308] = 5, + ACTIONS(3640), 1, anon_sym_PIPE, - ACTIONS(4376), 1, + ACTIONS(4374), 1, anon_sym_SEMI, - ACTIONS(4378), 1, + ACTIONS(4376), 1, anon_sym_COLON, - ACTIONS(4380), 1, + ACTIONS(4378), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60377] = 5, - ACTIONS(2484), 1, + sym_doc_comment, + [47326] = 5, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3353), 1, anon_sym_LT2, STATE(987), 1, sym_parameters, STATE(1346), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60394] = 5, - ACTIONS(4228), 1, + sym_doc_comment, + [47344] = 5, + ACTIONS(4226), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4228), 1, anon_sym_GT, - ACTIONS(4352), 1, + ACTIONS(4350), 1, anon_sym_EQ, STATE(2073), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60411] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [47362] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4382), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, - ACTIONS(4384), 1, + ACTIONS(4382), 1, anon_sym_COMMA, STATE(2069), 1, aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60428] = 5, - ACTIONS(3983), 1, + sym_doc_comment, + [47380] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4167), 1, + ACTIONS(4165), 1, anon_sym_RPAREN, - ACTIONS(4169), 1, + ACTIONS(4167), 1, anon_sym_COMMA, STATE(1903), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60445] = 4, - ACTIONS(3810), 1, + sym_doc_comment, + [47398] = 4, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1963), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4386), 2, + ACTIONS(4384), 2, anon_sym_COMMA, anon_sym_GT, - [60460] = 5, - ACTIONS(3722), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47414] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(1014), 1, sym_enum_variant_list, STATE(2211), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60477] = 5, - ACTIONS(4388), 1, + sym_doc_comment, + [47432] = 5, + ACTIONS(4386), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4388), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, STATE(1092), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60494] = 4, - ACTIONS(4394), 1, + sym_doc_comment, + [47450] = 4, + ACTIONS(4392), 1, anon_sym_DQUOTE, STATE(1852), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4303), 2, sym__string_content, sym_escape_sequence, - [60509] = 5, - ACTIONS(3237), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47466] = 5, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4012), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4014), 1, anon_sym_STAR, STATE(2059), 1, sym_use_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60526] = 5, - ACTIONS(4193), 1, + sym_doc_comment, + [47484] = 5, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4394), 1, anon_sym_SEMI, - ACTIONS(4398), 1, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(4400), 1, + ACTIONS(4398), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60543] = 4, - ACTIONS(4404), 1, + sym_doc_comment, + [47502] = 4, + ACTIONS(4402), 1, anon_sym_COMMA, STATE(1839), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4400), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [60558] = 3, - ACTIONS(3983), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47518] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4407), 3, + sym_doc_comment, + ACTIONS(4405), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60571] = 3, - ACTIONS(3983), 1, + [47532] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4409), 3, + sym_doc_comment, + ACTIONS(4407), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60584] = 3, - ACTIONS(4193), 1, + [47546] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4402), 3, + sym_doc_comment, + ACTIONS(4400), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [60597] = 5, - ACTIONS(4388), 1, + [47560] = 5, + ACTIONS(4386), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4388), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, STATE(1071), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60614] = 5, + sym_doc_comment, + [47578] = 5, ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4208), 1, + ACTIONS(4206), 1, anon_sym_COMMA, STATE(2028), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60631] = 4, - ACTIONS(4411), 1, + sym_doc_comment, + [47596] = 4, + ACTIONS(4409), 1, anon_sym_DQUOTE, STATE(1836), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4413), 2, + ACTIONS(4411), 2, sym__string_content, sym_escape_sequence, - [60646] = 4, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(4415), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + sym_doc_comment, + [47612] = 4, + ACTIONS(3458), 1, + anon_sym_COLON_COLON, + ACTIONS(4413), 1, + anon_sym_COLON, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60661] = 5, - ACTIONS(3983), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47628] = 5, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4417), 1, + ACTIONS(4415), 1, anon_sym_RPAREN, - ACTIONS(4419), 1, + ACTIONS(4417), 1, anon_sym_COMMA, STATE(1953), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60678] = 5, - ACTIONS(3355), 1, + sym_doc_comment, + [47646] = 5, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1346), 1, sym_type_arguments, STATE(1924), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60695] = 4, - ACTIONS(4421), 1, + sym_doc_comment, + [47664] = 4, + ACTIONS(4419), 1, anon_sym_COMMA, STATE(1796), 1, aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2833), 2, + ACTIONS(2831), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60710] = 4, - ACTIONS(4064), 1, - anon_sym_COLON, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [47680] = 4, + ACTIONS(4062), 1, + anon_sym_COLON, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60725] = 3, - ACTIONS(4423), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47696] = 3, + ACTIONS(4421), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3642), 3, + sym_doc_comment, + ACTIONS(3640), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60738] = 4, - ACTIONS(4425), 1, + [47710] = 4, + ACTIONS(4423), 1, anon_sym_DQUOTE, STATE(1852), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4427), 2, + ACTIONS(4425), 2, sym__string_content, sym_escape_sequence, - [60753] = 4, - ACTIONS(4432), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47726] = 4, + ACTIONS(4430), 1, anon_sym_COMMA, STATE(1849), 1, aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4430), 2, + ACTIONS(4428), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60768] = 4, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(4434), 1, - sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, + [47742] = 4, + ACTIONS(2247), 1, + anon_sym_POUND, + ACTIONS(4432), 1, + sym_identifier, STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [60783] = 5, - ACTIONS(3359), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47758] = 5, + ACTIONS(3357), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_LT, STATE(1701), 1, sym_parameters, STATE(2243), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60800] = 5, - ACTIONS(4388), 1, + sym_doc_comment, + [47776] = 5, + ACTIONS(4386), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4388), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, STATE(2086), 1, sym_token_tree, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60817] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47794] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(344), 1, sym_field_declaration_list, STATE(2194), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60834] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47812] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(399), 1, sym_field_declaration_list, STATE(2142), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60851] = 5, - ACTIONS(3722), 1, + sym_doc_comment, + [47830] = 5, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4046), 1, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(374), 1, sym_enum_variant_list, STATE(2128), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60868] = 4, - ACTIONS(3756), 1, + sym_doc_comment, + [47848] = 4, + ACTIONS(3754), 1, anon_sym_RBRACE, - ACTIONS(4436), 1, + ACTIONS(4434), 1, anon_sym_COMMA, STATE(2068), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [47863] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4436), 1, anon_sym_SEMI, STATE(996), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60896] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [47878] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4440), 3, + sym_doc_comment, + ACTIONS(4438), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60906] = 4, - ACTIONS(4442), 1, + [47889] = 4, + ACTIONS(4440), 1, anon_sym_RBRACE, - ACTIONS(4444), 1, + ACTIONS(4442), 1, anon_sym_COMMA, STATE(1918), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60920] = 4, - ACTIONS(4446), 1, + sym_doc_comment, + [47904] = 4, + ACTIONS(4444), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4446), 1, anon_sym_ref, - ACTIONS(4450), 1, + ACTIONS(4448), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60934] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [47919] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4452), 2, + ACTIONS(4450), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60946] = 4, - ACTIONS(4454), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [47932] = 4, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4456), 1, + ACTIONS(4454), 1, anon_sym_ref, - ACTIONS(4458), 1, + ACTIONS(4456), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60960] = 4, - ACTIONS(4460), 1, + sym_doc_comment, + [47947] = 4, + ACTIONS(4458), 1, sym_identifier, - ACTIONS(4462), 1, + ACTIONS(4460), 1, anon_sym_ref, - ACTIONS(4464), 1, + ACTIONS(4462), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60974] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [47962] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4466), 1, + ACTIONS(4464), 1, anon_sym_SEMI, - ACTIONS(4468), 1, + ACTIONS(4466), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [60988] = 4, + sym_doc_comment, + [47977] = 4, ACTIONS(546), 1, anon_sym_RBRACK, - ACTIONS(4470), 1, + ACTIONS(4468), 1, anon_sym_COMMA, STATE(1959), 1, aux_sym_array_expression_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61002] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [47992] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4472), 1, + ACTIONS(4470), 1, anon_sym_SEMI, STATE(2462), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61016] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48007] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4474), 3, + sym_doc_comment, + ACTIONS(4472), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61026] = 4, - ACTIONS(3722), 1, + [48018] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4476), 1, + ACTIONS(4474), 1, anon_sym_SEMI, STATE(2538), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61040] = 4, - ACTIONS(3724), 1, + sym_doc_comment, + [48033] = 4, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(4478), 1, + ACTIONS(4476), 1, anon_sym_EQ, STATE(2512), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61054] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48048] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4480), 3, + sym_doc_comment, + ACTIONS(4478), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61064] = 4, - ACTIONS(4010), 1, + [48059] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4482), 1, + ACTIONS(4480), 1, anon_sym_SEMI, STATE(432), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61078] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48074] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4482), 1, anon_sym_SEMI, STATE(385), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61092] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [48089] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_SEMI, - ACTIONS(4488), 1, + ACTIONS(4486), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61106] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48104] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4490), 1, + ACTIONS(4488), 1, anon_sym_SEMI, STATE(464), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61120] = 4, - ACTIONS(4492), 1, + sym_doc_comment, + [48119] = 4, + ACTIONS(4490), 1, anon_sym_RPAREN, - ACTIONS(4494), 1, + ACTIONS(4492), 1, anon_sym_COMMA, STATE(1879), 1, aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61134] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48134] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4497), 3, + sym_doc_comment, + ACTIONS(4495), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61144] = 4, - ACTIONS(3738), 1, + [48145] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4499), 1, + ACTIONS(4497), 1, anon_sym_SEMI, STATE(462), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61158] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48160] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(4499), 1, anon_sym_SEMI, STATE(434), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61172] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48175] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4503), 1, + ACTIONS(4501), 1, anon_sym_SEMI, STATE(273), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61186] = 3, - ACTIONS(4505), 1, + sym_doc_comment, + [48190] = 3, + ACTIONS(4503), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4507), 2, + ACTIONS(4505), 2, anon_sym_default, anon_sym_union, - [61198] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4509), 2, + sym_doc_comment, + [48203] = 3, + ACTIONS(3981), 1, + anon_sym_PLUS, + ACTIONS(4507), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61210] = 3, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [48216] = 3, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61222] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4511), 3, + sym_doc_comment, + [48229] = 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + ACTIONS(4509), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61232] = 4, + [48240] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, STATE(1111), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61246] = 4, - ACTIONS(4513), 1, + sym_doc_comment, + [48255] = 4, + ACTIONS(4511), 1, anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(4513), 1, anon_sym_COMMA, STATE(1948), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61260] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [48270] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61272] = 4, - ACTIONS(4519), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48283] = 4, + ACTIONS(4517), 1, anon_sym_for, - ACTIONS(4521), 1, + ACTIONS(4519), 1, anon_sym_loop, - ACTIONS(4523), 1, + ACTIONS(4521), 1, anon_sym_while, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61286] = 4, + sym_doc_comment, + [48298] = 4, ACTIONS(382), 1, anon_sym_RPAREN, - ACTIONS(3141), 1, + ACTIONS(3139), 1, anon_sym_COMMA, STATE(2101), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61300] = 3, - ACTIONS(4072), 1, + sym_doc_comment, + [48313] = 3, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61312] = 4, - ACTIONS(4010), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48326] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4525), 1, + ACTIONS(4523), 1, anon_sym_SEMI, STATE(262), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61326] = 4, - ACTIONS(2548), 1, + sym_doc_comment, + [48341] = 4, + ACTIONS(2546), 1, anon_sym_LBRACE, - ACTIONS(4527), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, STATE(1097), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61340] = 4, - ACTIONS(3724), 1, + sym_doc_comment, + [48356] = 4, + ACTIONS(3722), 1, anon_sym_LT, - ACTIONS(4529), 1, + ACTIONS(4527), 1, anon_sym_EQ, STATE(2502), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61354] = 4, - ACTIONS(4531), 1, + sym_doc_comment, + [48371] = 4, + ACTIONS(4529), 1, anon_sym_RBRACE, - ACTIONS(4533), 1, + ACTIONS(4531), 1, anon_sym_COMMA, STATE(2035), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61368] = 4, + sym_doc_comment, + [48386] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4535), 1, + ACTIONS(4533), 1, anon_sym_move, STATE(1115), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61382] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48401] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4537), 1, + ACTIONS(4535), 1, anon_sym_SEMI, STATE(267), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61396] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [48416] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4539), 2, + ACTIONS(4537), 2, anon_sym_COMMA, anon_sym_GT, - [61408] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4541), 2, + sym_doc_comment, + [48429] = 3, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4539), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61420] = 3, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + sym_doc_comment, + [48442] = 3, + ACTIONS(3458), 1, + anon_sym_COLON_COLON, + ACTIONS(3460), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61432] = 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48455] = 4, ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4208), 1, + ACTIONS(4206), 1, anon_sym_COMMA, STATE(2097), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61446] = 4, - ACTIONS(2363), 1, + sym_doc_comment, + [48470] = 4, + ACTIONS(2361), 1, anon_sym_RPAREN, - ACTIONS(4543), 1, + ACTIONS(4541), 1, anon_sym_COMMA, STATE(1839), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61460] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48485] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4545), 1, + ACTIONS(4543), 1, anon_sym_SEMI, STATE(400), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61474] = 4, - ACTIONS(3494), 1, + sym_doc_comment, + [48500] = 4, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3870), 1, + ACTIONS(3868), 1, anon_sym_BANG, - ACTIONS(4547), 1, + ACTIONS(4545), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61488] = 3, - ACTIONS(3115), 1, + sym_doc_comment, + [48515] = 3, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4549), 2, + ACTIONS(4547), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61500] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, + sym_doc_comment, + [48528] = 3, + ACTIONS(3981), 1, + anon_sym_PLUS, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61512] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4551), 2, + sym_doc_comment, + [48541] = 3, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4549), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61524] = 3, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [48554] = 3, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61536] = 3, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4555), 2, + sym_doc_comment, + [48567] = 3, + ACTIONS(4551), 1, + sym_identifier, + ACTIONS(4553), 2, anon_sym_default, anon_sym_union, - [61548] = 4, - ACTIONS(3436), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48580] = 4, + ACTIONS(3434), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_COLON, STATE(1924), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61562] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [48595] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(3688), 1, + ACTIONS(3686), 1, anon_sym_LBRACE, STATE(1346), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61576] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [48610] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4557), 1, + ACTIONS(4555), 1, anon_sym_SEMI, - ACTIONS(4559), 1, + ACTIONS(4557), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61590] = 4, - ACTIONS(4561), 1, + sym_doc_comment, + [48625] = 4, + ACTIONS(4559), 1, anon_sym_RBRACE, - ACTIONS(4563), 1, + ACTIONS(4561), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61604] = 3, - ACTIONS(4567), 1, + sym_doc_comment, + [48640] = 3, + ACTIONS(4565), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4565), 2, + ACTIONS(4563), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61616] = 3, - ACTIONS(4571), 1, - anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4569), 2, + sym_doc_comment, + [48653] = 3, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4567), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61628] = 4, - ACTIONS(3700), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48666] = 4, + ACTIONS(3698), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4571), 1, anon_sym_COMMA, STATE(2066), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61642] = 4, - ACTIONS(3700), 1, + sym_doc_comment, + [48681] = 4, + ACTIONS(3698), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4571), 1, anon_sym_COMMA, STATE(2055), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61656] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48696] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4575), 1, + ACTIONS(4573), 1, anon_sym_SEMI, STATE(304), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61670] = 3, - ACTIONS(4579), 1, + sym_doc_comment, + [48711] = 3, + ACTIONS(4577), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4577), 2, + ACTIONS(4575), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61682] = 4, - ACTIONS(4299), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [48724] = 4, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4581), 1, + ACTIONS(4579), 1, anon_sym_PIPE, STATE(1941), 1, aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61696] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48739] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4583), 3, + sym_doc_comment, + ACTIONS(4581), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61706] = 2, - ACTIONS(3), 2, + [48750] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4585), 3, + sym_doc_comment, + ACTIONS(4583), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [61716] = 4, - ACTIONS(3983), 1, + [48761] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4587), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - ACTIONS(4589), 1, + ACTIONS(4587), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61730] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48776] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4591), 3, + sym_doc_comment, + ACTIONS(4589), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [61740] = 4, - ACTIONS(3440), 1, + [48787] = 4, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_COLON, STATE(1924), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61754] = 4, + sym_doc_comment, + [48802] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, STATE(1032), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48817] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4593), 1, + ACTIONS(4591), 1, anon_sym_SEMI, STATE(453), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61782] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [48832] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4595), 1, + ACTIONS(4593), 1, anon_sym_SEMI, STATE(315), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(3075), 1, + sym_doc_comment, + [48847] = 4, + ACTIONS(3073), 1, anon_sym_RPAREN, - ACTIONS(4597), 1, + ACTIONS(4595), 1, anon_sym_COMMA, STATE(1879), 1, aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48862] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, + ACTIONS(4597), 1, anon_sym_SEMI, STATE(364), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(4193), 1, + sym_doc_comment, + [48877] = 4, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4601), 1, + ACTIONS(4599), 1, anon_sym_EQ_GT, - ACTIONS(4603), 1, + ACTIONS(4601), 1, anon_sym_if, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61838] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [48892] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4605), 3, + sym_doc_comment, + ACTIONS(4603), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61848] = 2, - ACTIONS(3), 2, + [48903] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4607), 3, + sym_doc_comment, + ACTIONS(4605), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61858] = 4, + [48914] = 4, ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4208), 1, + ACTIONS(4206), 1, anon_sym_COMMA, STATE(2028), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61872] = 4, + sym_doc_comment, + [48929] = 4, ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(4609), 1, + ACTIONS(4607), 1, anon_sym_move, STATE(240), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61886] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48944] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4611), 1, + ACTIONS(4609), 1, anon_sym_SEMI, STATE(469), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61900] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [48959] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4611), 1, anon_sym_SEMI, STATE(440), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61914] = 4, - ACTIONS(3728), 1, + sym_doc_comment, + [48974] = 4, + ACTIONS(3726), 1, anon_sym_RBRACE, - ACTIONS(4615), 1, + ACTIONS(4613), 1, anon_sym_COMMA, STATE(1942), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61928] = 4, - ACTIONS(4617), 1, + sym_doc_comment, + [48989] = 4, + ACTIONS(4615), 1, anon_sym_COMMA, - ACTIONS(4620), 1, + ACTIONS(4618), 1, anon_sym_PIPE, STATE(1941), 1, aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61942] = 4, - ACTIONS(4622), 1, + sym_doc_comment, + [49004] = 4, + ACTIONS(4620), 1, anon_sym_RBRACE, - ACTIONS(4624), 1, + ACTIONS(4622), 1, anon_sym_COMMA, STATE(1942), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(4627), 1, + sym_doc_comment, + [49019] = 4, + ACTIONS(4625), 1, anon_sym_for, - ACTIONS(4629), 1, + ACTIONS(4627), 1, anon_sym_loop, - ACTIONS(4631), 1, + ACTIONS(4629), 1, anon_sym_while, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [61970] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49034] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4633), 3, + sym_doc_comment, + ACTIONS(4631), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61980] = 3, - ACTIONS(3983), 1, + [49045] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4635), 2, + ACTIONS(4633), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61992] = 3, - ACTIONS(4189), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, + sym_doc_comment, + [49058] = 3, + ACTIONS(4187), 1, + anon_sym_COLON, + ACTIONS(4618), 2, anon_sym_COMMA, anon_sym_PIPE, - [62004] = 4, - ACTIONS(3237), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49071] = 4, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(4637), 1, + ACTIONS(4635), 1, sym_identifier, STATE(1970), 1, sym_use_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62018] = 4, - ACTIONS(4639), 1, + sym_doc_comment, + [49086] = 4, + ACTIONS(4637), 1, anon_sym_RPAREN, - ACTIONS(4641), 1, + ACTIONS(4639), 1, anon_sym_COMMA, STATE(1948), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62032] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [49101] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(4642), 1, anon_sym_SEMI, STATE(298), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62046] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [49116] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4646), 2, + ACTIONS(4644), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62058] = 3, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + sym_doc_comment, + [49129] = 3, + ACTIONS(4153), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62070] = 4, - ACTIONS(2548), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49142] = 4, + ACTIONS(2546), 1, anon_sym_LBRACE, - ACTIONS(4648), 1, + ACTIONS(4646), 1, anon_sym_COLON_COLON, STATE(1097), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62084] = 4, - ACTIONS(4650), 1, + sym_doc_comment, + [49157] = 4, + ACTIONS(4648), 1, anon_sym_RPAREN, - ACTIONS(4652), 1, + ACTIONS(4650), 1, anon_sym_COMMA, STATE(1948), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62098] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [49172] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4654), 1, + ACTIONS(4652), 1, anon_sym_SEMI, - ACTIONS(4656), 1, + ACTIONS(4654), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62112] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [49187] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_as, - ACTIONS(4660), 1, + ACTIONS(4658), 1, anon_sym_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62126] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [49202] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4662), 1, + ACTIONS(4660), 1, anon_sym_SEMI, STATE(419), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62140] = 4, - ACTIONS(3740), 1, + sym_doc_comment, + [49217] = 4, + ACTIONS(3738), 1, anon_sym_RBRACE, - ACTIONS(4664), 1, + ACTIONS(4662), 1, anon_sym_COMMA, STATE(2123), 1, aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62154] = 4, - ACTIONS(4299), 1, + sym_doc_comment, + [49232] = 4, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4666), 1, + ACTIONS(4664), 1, anon_sym_PIPE, STATE(1922), 1, aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62168] = 4, - ACTIONS(3229), 1, + sym_doc_comment, + [49247] = 4, + ACTIONS(3227), 1, anon_sym_RBRACK, - ACTIONS(4668), 1, + ACTIONS(4666), 1, anon_sym_COMMA, STATE(1959), 1, aux_sym_array_expression_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62182] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49262] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4671), 1, + ACTIONS(4669), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62196] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [49277] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4671), 1, anon_sym_SEMI, STATE(914), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62210] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49292] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4671), 1, + ACTIONS(4669), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62224] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49307] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4675), 3, + sym_doc_comment, + ACTIONS(4673), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [62234] = 3, - ACTIONS(4679), 1, + [49318] = 3, + ACTIONS(4677), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4677), 2, + ACTIONS(4675), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62246] = 4, - ACTIONS(3929), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49331] = 4, + ACTIONS(3927), 1, anon_sym_RBRACE, - ACTIONS(4681), 1, + ACTIONS(4679), 1, anon_sym_COMMA, STATE(2015), 1, aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62260] = 4, + sym_doc_comment, + [49346] = 4, ACTIONS(916), 1, anon_sym_GT, - ACTIONS(4683), 1, + ACTIONS(4681), 1, anon_sym_COMMA, STATE(1996), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62274] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [49361] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4685), 1, + ACTIONS(4683), 1, anon_sym_SEMI, STATE(331), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(3937), 1, + sym_doc_comment, + [49376] = 4, + ACTIONS(3935), 1, anon_sym_RBRACE, - ACTIONS(4687), 1, + ACTIONS(4685), 1, anon_sym_COMMA, STATE(2015), 1, aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62302] = 4, - ACTIONS(2492), 1, + sym_doc_comment, + [49391] = 4, + ACTIONS(2490), 1, anon_sym_LT2, - ACTIONS(4689), 1, + ACTIONS(4687), 1, sym_identifier, STATE(831), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62316] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49406] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, + sym_doc_comment, + ACTIONS(4689), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62326] = 3, - ACTIONS(3983), 1, + [49417] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4693), 2, + ACTIONS(4691), 2, anon_sym_COMMA, anon_sym_GT, - [62338] = 4, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49430] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4695), 1, + ACTIONS(4693), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62352] = 4, - ACTIONS(2492), 1, + sym_doc_comment, + [49445] = 4, + ACTIONS(2490), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4695), 1, sym_identifier, STATE(1187), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62366] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49460] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4695), 1, + ACTIONS(4693), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62380] = 4, - ACTIONS(2357), 1, + sym_doc_comment, + [49475] = 4, + ACTIONS(2355), 1, anon_sym_RPAREN, - ACTIONS(4699), 1, + ACTIONS(4697), 1, anon_sym_COMMA, STATE(1839), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62394] = 4, - ACTIONS(4701), 1, + sym_doc_comment, + [49490] = 4, + ACTIONS(4699), 1, anon_sym_RPAREN, - ACTIONS(4703), 1, + ACTIONS(4701), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62408] = 4, - ACTIONS(4706), 1, + sym_doc_comment, + [49505] = 4, + ACTIONS(4704), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4706), 1, anon_sym_ref, - ACTIONS(4710), 1, + ACTIONS(4708), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62422] = 4, - ACTIONS(4712), 1, + sym_doc_comment, + [49520] = 4, + ACTIONS(4710), 1, anon_sym_COMMA, - ACTIONS(4715), 1, + ACTIONS(4713), 1, anon_sym_GT, STATE(1978), 1, aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62436] = 4, - ACTIONS(2492), 1, + sym_doc_comment, + [49535] = 4, + ACTIONS(2490), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4695), 1, sym_identifier, STATE(1181), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62450] = 4, - ACTIONS(2245), 1, + sym_doc_comment, + [49550] = 4, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(4717), 1, + ACTIONS(4715), 1, anon_sym_GT, STATE(2233), 1, sym_lifetime, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62464] = 4, - ACTIONS(2245), 1, + sym_doc_comment, + [49565] = 4, + ACTIONS(2243), 1, anon_sym_SQUOTE, - ACTIONS(4719), 1, + ACTIONS(4717), 1, anon_sym_GT, STATE(2233), 1, sym_lifetime, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62478] = 4, - ACTIONS(4719), 1, + sym_doc_comment, + [49580] = 4, + ACTIONS(4717), 1, anon_sym_GT, - ACTIONS(4721), 1, + ACTIONS(4719), 1, anon_sym_COMMA, STATE(1978), 1, aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62492] = 4, - ACTIONS(4723), 1, + sym_doc_comment, + [49595] = 4, + ACTIONS(4721), 1, anon_sym_RBRACE, - ACTIONS(4725), 1, + ACTIONS(4723), 1, anon_sym_COMMA, STATE(2102), 1, aux_sym_use_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62506] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49610] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4727), 1, + ACTIONS(4725), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62520] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49625] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4729), 3, + sym_doc_comment, + ACTIONS(4727), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62530] = 3, - ACTIONS(3983), 1, + [49636] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4731), 2, + ACTIONS(4729), 2, anon_sym_COMMA, anon_sym_GT, - [62542] = 4, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49649] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4727), 1, + ACTIONS(4725), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62556] = 4, - ACTIONS(4733), 1, + sym_doc_comment, + [49664] = 4, + ACTIONS(4731), 1, sym_identifier, - ACTIONS(4735), 1, + ACTIONS(4733), 1, anon_sym_await, - ACTIONS(4737), 1, + ACTIONS(4735), 1, sym_integer_literal, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62570] = 4, - ACTIONS(2492), 1, + sym_doc_comment, + [49679] = 4, + ACTIONS(2490), 1, anon_sym_LT2, - ACTIONS(4689), 1, + ACTIONS(4687), 1, sym_identifier, STATE(866), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62584] = 3, - ACTIONS(4352), 1, + sym_doc_comment, + [49694] = 3, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4386), 2, + ACTIONS(4384), 2, anon_sym_COMMA, anon_sym_GT, - [62596] = 4, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49707] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4014), 1, + ACTIONS(4012), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62610] = 4, - ACTIONS(3784), 1, + sym_doc_comment, + [49722] = 4, + ACTIONS(3782), 1, anon_sym_GT, - ACTIONS(4739), 1, + ACTIONS(4737), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62624] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49737] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4739), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62638] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49752] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4743), 3, + sym_doc_comment, + ACTIONS(4741), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [62648] = 4, - ACTIONS(4745), 1, + [49763] = 4, + ACTIONS(4743), 1, anon_sym_for, - ACTIONS(4747), 1, + ACTIONS(4745), 1, anon_sym_loop, - ACTIONS(4749), 1, + ACTIONS(4747), 1, anon_sym_while, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62662] = 4, - ACTIONS(4751), 1, + sym_doc_comment, + [49778] = 4, + ACTIONS(4749), 1, anon_sym_COMMA, - ACTIONS(4754), 1, + ACTIONS(4752), 1, anon_sym_GT, STATE(1996), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62676] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [49793] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4739), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62690] = 4, - ACTIONS(4167), 1, + sym_doc_comment, + [49808] = 4, + ACTIONS(4165), 1, anon_sym_RPAREN, - ACTIONS(4169), 1, + ACTIONS(4167), 1, anon_sym_COMMA, STATE(1903), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62704] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [49823] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4756), 1, + ACTIONS(4754), 1, anon_sym_SEMI, - ACTIONS(4758), 1, + ACTIONS(4756), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62718] = 4, - ACTIONS(4386), 1, + sym_doc_comment, + [49838] = 4, + ACTIONS(4384), 1, anon_sym_GT, - ACTIONS(4760), 1, + ACTIONS(4758), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62732] = 4, - ACTIONS(4228), 1, + sym_doc_comment, + [49853] = 4, + ACTIONS(4226), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4228), 1, anon_sym_GT, STATE(2073), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62746] = 4, - ACTIONS(2405), 1, + sym_doc_comment, + [49868] = 4, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(4763), 1, + ACTIONS(4761), 1, sym_mutable_specifier, - ACTIONS(4765), 1, + ACTIONS(4763), 1, sym_self, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62760] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [49883] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4767), 2, + ACTIONS(4765), 2, anon_sym_COMMA, anon_sym_GT, - [62772] = 4, - ACTIONS(3738), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49896] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4769), 1, + ACTIONS(4767), 1, anon_sym_SEMI, STATE(437), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62786] = 3, - ACTIONS(2405), 1, + sym_doc_comment, + [49911] = 3, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4754), 2, + ACTIONS(4752), 2, anon_sym_COMMA, anon_sym_GT, - [62798] = 4, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [49924] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4771), 1, + ACTIONS(4769), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62812] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [49939] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4773), 1, + ACTIONS(4771), 1, anon_sym_SEMI, STATE(994), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62826] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [49954] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4775), 1, + ACTIONS(4773), 1, anon_sym_SEMI, STATE(481), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62840] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [49969] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4777), 3, + sym_doc_comment, + ACTIONS(4775), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [62850] = 4, - ACTIONS(3355), 1, + [49980] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4014), 1, + ACTIONS(4012), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62864] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [49995] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4754), 2, + ACTIONS(4752), 2, anon_sym_COMMA, anon_sym_GT, - [62876] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4779), 2, + sym_doc_comment, + [50008] = 3, + ACTIONS(3981), 1, + anon_sym_PLUS, + ACTIONS(4777), 2, anon_sym_COMMA, anon_sym_GT, - [62888] = 4, - ACTIONS(3355), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [50021] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4771), 1, + ACTIONS(4769), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62902] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [50036] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4781), 1, + ACTIONS(4779), 1, anon_sym_SEMI, STATE(2506), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62916] = 4, - ACTIONS(4783), 1, + sym_doc_comment, + [50051] = 4, + ACTIONS(4781), 1, anon_sym_RBRACE, - ACTIONS(4785), 1, + ACTIONS(4783), 1, anon_sym_COMMA, STATE(2015), 1, aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62930] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50066] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4788), 1, + ACTIONS(4786), 1, anon_sym_SEMI, - ACTIONS(4790), 1, + ACTIONS(4788), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62944] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [50081] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4792), 1, + ACTIONS(4790), 1, anon_sym_SEMI, STATE(336), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62958] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [50096] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(4792), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, + [50109] = 3, + ACTIONS(4796), 1, + anon_sym_COLON, ACTIONS(4794), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62970] = 3, - ACTIONS(4798), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4796), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62982] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [50122] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4798), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [62996] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50137] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4802), 3, + sym_doc_comment, + ACTIONS(4800), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [63006] = 4, - ACTIONS(3355), 1, + [50148] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4798), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63020] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [50163] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4804), 1, + ACTIONS(4802), 1, anon_sym_SEMI, STATE(390), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63034] = 4, - ACTIONS(4010), 1, + sym_doc_comment, + [50178] = 4, + ACTIONS(4008), 1, anon_sym_LBRACE, - ACTIONS(4806), 1, + ACTIONS(4804), 1, anon_sym_SEMI, STATE(261), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63048] = 4, - ACTIONS(4808), 1, + sym_doc_comment, + [50193] = 4, + ACTIONS(4806), 1, anon_sym_COMMA, - ACTIONS(4810), 1, + ACTIONS(4808), 1, anon_sym_GT, STATE(1982), 1, aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63062] = 4, - ACTIONS(2454), 1, + sym_doc_comment, + [50208] = 4, + ACTIONS(2452), 1, anon_sym_RPAREN, - ACTIONS(4812), 1, + ACTIONS(4810), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63076] = 4, - ACTIONS(4814), 1, + sym_doc_comment, + [50223] = 4, + ACTIONS(4812), 1, anon_sym_RBRACE, - ACTIONS(4816), 1, + ACTIONS(4814), 1, anon_sym_COMMA, STATE(1968), 1, aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63090] = 4, + sym_doc_comment, + [50238] = 4, ACTIONS(798), 1, anon_sym_RPAREN, - ACTIONS(4818), 1, + ACTIONS(4816), 1, anon_sym_COMMA, STATE(2097), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63104] = 3, - ACTIONS(3115), 1, + sym_doc_comment, + [50253] = 3, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4210), 2, + ACTIONS(4208), 2, anon_sym_RPAREN, anon_sym_COMMA, - [63116] = 4, - ACTIONS(3983), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [50266] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4820), 1, + ACTIONS(4818), 1, anon_sym_SEMI, - ACTIONS(4822), 1, + ACTIONS(4820), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63130] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50281] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4824), 1, + ACTIONS(4822), 1, anon_sym_SEMI, STATE(920), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63144] = 4, + sym_doc_comment, + [50296] = 4, ACTIONS(388), 1, anon_sym_RPAREN, - ACTIONS(4826), 1, + ACTIONS(4824), 1, anon_sym_COMMA, STATE(2101), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63158] = 4, - ACTIONS(4828), 1, + sym_doc_comment, + [50311] = 4, + ACTIONS(4826), 1, anon_sym_RPAREN, - ACTIONS(4830), 1, + ACTIONS(4828), 1, anon_sym_COMMA, STATE(1948), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63172] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50326] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4830), 1, anon_sym_SEMI, STATE(878), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63186] = 4, - ACTIONS(3754), 1, + sym_doc_comment, + [50341] = 4, + ACTIONS(3752), 1, anon_sym_RBRACE, - ACTIONS(4834), 1, + ACTIONS(4832), 1, anon_sym_COMMA, STATE(1942), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63200] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50356] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4836), 1, + ACTIONS(4834), 1, anon_sym_SEMI, STATE(885), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63214] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [50371] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4333), 2, + ACTIONS(4331), 2, anon_sym_RPAREN, anon_sym_COMMA, - [63226] = 4, - ACTIONS(4004), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [50384] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4838), 1, + ACTIONS(4836), 1, anon_sym_SEMI, STATE(904), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63240] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [50399] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4840), 1, + ACTIONS(4838), 1, sym_identifier, STATE(2311), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63254] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50414] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4842), 1, + ACTIONS(4840), 1, anon_sym_SEMI, STATE(947), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63268] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50429] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4844), 1, + ACTIONS(4842), 1, anon_sym_SEMI, - ACTIONS(4846), 1, + ACTIONS(4844), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63282] = 4, - ACTIONS(3754), 1, + sym_doc_comment, + [50444] = 4, + ACTIONS(3752), 1, anon_sym_RBRACE, - ACTIONS(4834), 1, + ACTIONS(4832), 1, anon_sym_COMMA, STATE(1940), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63296] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50459] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4848), 1, + ACTIONS(4846), 1, anon_sym_SEMI, STATE(965), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63310] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50474] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4850), 1, + ACTIONS(4848), 1, anon_sym_SEMI, STATE(976), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63324] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50489] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, + ACTIONS(4850), 1, anon_sym_SEMI, STATE(988), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63338] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50504] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4854), 1, + ACTIONS(4852), 1, anon_sym_SEMI, - ACTIONS(4856), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63352] = 4, - ACTIONS(4340), 1, + sym_doc_comment, + [50519] = 4, + ACTIONS(4338), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4340), 1, anon_sym_GT, STATE(1966), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63366] = 4, - ACTIONS(3355), 1, + sym_doc_comment, + [50534] = 4, + ACTIONS(3353), 1, anon_sym_LT2, - ACTIONS(4840), 1, + ACTIONS(4838), 1, sym_identifier, STATE(2443), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63380] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [50549] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4858), 1, + ACTIONS(4856), 1, anon_sym_SEMI, STATE(2470), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63394] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50564] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(4858), 1, anon_sym_SEMI, STATE(1012), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63408] = 4, - ACTIONS(4862), 1, + sym_doc_comment, + [50579] = 4, + ACTIONS(4860), 1, anon_sym_RBRACE, - ACTIONS(4864), 1, + ACTIONS(4862), 1, anon_sym_COMMA, STATE(2124), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63422] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50594] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4335), 3, + sym_doc_comment, + ACTIONS(4333), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [63432] = 4, - ACTIONS(3738), 1, + [50605] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4866), 1, + ACTIONS(4864), 1, anon_sym_SEMI, STATE(401), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63446] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [50620] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4868), 1, + ACTIONS(4866), 1, anon_sym_SEMI, STATE(1019), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63460] = 4, - ACTIONS(3768), 1, + sym_doc_comment, + [50635] = 4, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(4870), 1, + ACTIONS(4868), 1, anon_sym_COMMA, STATE(2066), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63474] = 3, - ACTIONS(4874), 1, + sym_doc_comment, + [50650] = 3, + ACTIONS(4872), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4872), 2, + ACTIONS(4870), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63486] = 4, - ACTIONS(3750), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [50663] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4876), 1, + ACTIONS(4874), 1, anon_sym_SEMI, STATE(992), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63500] = 4, - ACTIONS(4224), 1, + sym_doc_comment, + [50678] = 4, + ACTIONS(4222), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4224), 1, anon_sym_COMMA, STATE(2119), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63514] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50693] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4878), 3, + sym_doc_comment, + ACTIONS(4876), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63524] = 4, - ACTIONS(2367), 1, + [50704] = 4, + ACTIONS(2365), 1, anon_sym_RBRACK, - ACTIONS(4880), 1, + ACTIONS(4878), 1, anon_sym_COMMA, STATE(1839), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63538] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50719] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4882), 3, + sym_doc_comment, + ACTIONS(4880), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63548] = 4, - ACTIONS(4004), 1, + [50730] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4884), 1, + ACTIONS(4882), 1, anon_sym_SEMI, STATE(887), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63562] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50745] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4886), 3, + sym_doc_comment, + ACTIONS(4884), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63572] = 2, - ACTIONS(3), 2, + [50756] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4888), 3, + sym_doc_comment, + ACTIONS(4886), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63582] = 4, - ACTIONS(4364), 1, + [50767] = 4, + ACTIONS(4362), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4364), 1, anon_sym_GT, STATE(2113), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63596] = 4, - ACTIONS(4890), 1, + sym_doc_comment, + [50782] = 4, + ACTIONS(4888), 1, anon_sym_RBRACE, - ACTIONS(4892), 1, + ACTIONS(4890), 1, anon_sym_COMMA, STATE(2066), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63610] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50797] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, + ACTIONS(4893), 1, anon_sym_SEMI, STATE(981), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63624] = 4, - ACTIONS(3766), 1, + sym_doc_comment, + [50812] = 4, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(4897), 1, + ACTIONS(4895), 1, anon_sym_COMMA, STATE(1942), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63638] = 4, - ACTIONS(2444), 1, + sym_doc_comment, + [50827] = 4, + ACTIONS(2442), 1, anon_sym_RPAREN, - ACTIONS(4899), 1, + ACTIONS(4897), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63652] = 4, - ACTIONS(4901), 1, + sym_doc_comment, + [50842] = 4, + ACTIONS(4899), 1, anon_sym_RBRACE, - ACTIONS(4903), 1, + ACTIONS(4901), 1, anon_sym_COMMA, STATE(2070), 1, aux_sym_use_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63666] = 4, - ACTIONS(3760), 1, + sym_doc_comment, + [50857] = 4, + ACTIONS(3758), 1, anon_sym_GT, - ACTIONS(4906), 1, + ACTIONS(4904), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63680] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50872] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4908), 3, + sym_doc_comment, + ACTIONS(4906), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [63690] = 4, - ACTIONS(3746), 1, + [50883] = 4, + ACTIONS(3744), 1, anon_sym_GT, - ACTIONS(4910), 1, + ACTIONS(4908), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63704] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50898] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4912), 1, + ACTIONS(4910), 1, anon_sym_SEMI, - ACTIONS(4914), 1, + ACTIONS(4912), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63718] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50913] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4916), 1, + ACTIONS(4914), 1, anon_sym_SEMI, - ACTIONS(4918), 1, + ACTIONS(4916), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63732] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50928] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(4918), 1, anon_sym_SEMI, STATE(867), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63746] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [50943] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4920), 1, anon_sym_SEMI, STATE(963), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63760] = 4, - ACTIONS(4924), 1, + sym_doc_comment, + [50958] = 4, + ACTIONS(4922), 1, anon_sym_RPAREN, - ACTIONS(4926), 1, + ACTIONS(4924), 1, anon_sym_COMMA, STATE(1931), 1, aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63774] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [50973] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4928), 1, + ACTIONS(4926), 1, anon_sym_SEMI, - ACTIONS(4930), 1, + ACTIONS(4928), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63788] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [50988] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4932), 3, + sym_doc_comment, + ACTIONS(4930), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63798] = 2, - ACTIONS(3), 2, + [50999] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4934), 3, + sym_doc_comment, + ACTIONS(4932), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63808] = 4, - ACTIONS(3750), 1, + [51010] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4936), 1, + ACTIONS(4934), 1, anon_sym_SEMI, STATE(956), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63822] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [51025] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4936), 1, anon_sym_SEMI, STATE(938), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63836] = 4, + sym_doc_comment, + [51040] = 4, ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4940), 1, + ACTIONS(4938), 1, anon_sym_COMMA, STATE(2097), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3764), 1, + sym_doc_comment, + [51055] = 4, + ACTIONS(3762), 1, anon_sym_RBRACE, - ACTIONS(4942), 1, + ACTIONS(4940), 1, anon_sym_COMMA, STATE(2066), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63864] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [51070] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4944), 3, + sym_doc_comment, + ACTIONS(4942), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [63874] = 4, - ACTIONS(3983), 1, + [51081] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4946), 1, + ACTIONS(4944), 1, anon_sym_SEMI, - ACTIONS(4948), 1, + ACTIONS(4946), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63888] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [51096] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(4948), 1, anon_sym_SEMI, STATE(413), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63902] = 4, - ACTIONS(4952), 1, + sym_doc_comment, + [51111] = 4, + ACTIONS(4950), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(4952), 1, anon_sym_COMMA, STATE(2104), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63916] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [51126] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4954), 1, anon_sym_SEMI, STATE(2312), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [51141] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4956), 1, anon_sym_SEMI, STATE(2513), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63944] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [51156] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4960), 1, + ACTIONS(4958), 1, anon_sym_SEMI, - ACTIONS(4962), 1, + ACTIONS(4960), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63958] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [51171] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(4962), 1, anon_sym_SEMI, STATE(873), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63972] = 4, + sym_doc_comment, + [51186] = 4, ACTIONS(552), 1, anon_sym_RBRACK, - ACTIONS(3109), 1, + ACTIONS(3107), 1, anon_sym_COMMA, STATE(1959), 1, aux_sym_array_expression_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [63986] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [51201] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, + sym_doc_comment, + ACTIONS(4964), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63996] = 4, - ACTIONS(3786), 1, + [51212] = 4, + ACTIONS(3784), 1, anon_sym_GT, - ACTIONS(4968), 1, + ACTIONS(4966), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64010] = 4, - ACTIONS(4333), 1, + sym_doc_comment, + [51227] = 4, + ACTIONS(4331), 1, anon_sym_RPAREN, - ACTIONS(4970), 1, + ACTIONS(4968), 1, anon_sym_COMMA, STATE(2097), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64024] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [51242] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(4971), 1, anon_sym_SEMI, STATE(856), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64038] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [51257] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, + sym_doc_comment, + ACTIONS(4973), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [64048] = 4, - ACTIONS(3750), 1, + [51268] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(4975), 1, anon_sym_SEMI, STATE(809), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64062] = 4, - ACTIONS(3211), 1, + sym_doc_comment, + [51283] = 4, + ACTIONS(3209), 1, anon_sym_RPAREN, - ACTIONS(4979), 1, + ACTIONS(4977), 1, anon_sym_COMMA, STATE(2101), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64076] = 4, - ACTIONS(3267), 1, + sym_doc_comment, + [51298] = 4, + ACTIONS(3265), 1, anon_sym_RBRACE, - ACTIONS(4982), 1, + ACTIONS(4980), 1, anon_sym_COMMA, STATE(2070), 1, aux_sym_use_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64090] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [51313] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4984), 3, + sym_doc_comment, + ACTIONS(4982), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [64100] = 4, - ACTIONS(3756), 1, + [51324] = 4, + ACTIONS(3754), 1, anon_sym_RBRACE, - ACTIONS(4436), 1, + ACTIONS(4434), 1, anon_sym_COMMA, STATE(1942), 1, aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64114] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [51339] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4986), 1, + ACTIONS(4984), 1, anon_sym_SEMI, - ACTIONS(4988), 1, + ACTIONS(4986), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64128] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [51354] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(4990), 1, + ACTIONS(4988), 1, anon_sym_SEMI, - ACTIONS(4992), 1, + ACTIONS(4990), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64142] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [51369] = 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4994), 3, + sym_doc_comment, + ACTIONS(4992), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [64152] = 4, - ACTIONS(3722), 1, + [51380] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(4996), 1, + ACTIONS(4994), 1, anon_sym_SEMI, STATE(2507), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64166] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [51395] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4998), 1, + ACTIONS(4996), 1, anon_sym_SEMI, STATE(835), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64180] = 4, - ACTIONS(3750), 1, + sym_doc_comment, + [51410] = 4, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(5000), 1, + ACTIONS(4998), 1, anon_sym_SEMI, STATE(800), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64194] = 4, - ACTIONS(4084), 1, + sym_doc_comment, + [51425] = 4, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4084), 1, anon_sym_GT, STATE(2096), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64208] = 4, - ACTIONS(5002), 1, + sym_doc_comment, + [51440] = 4, + ACTIONS(5000), 1, anon_sym_RBRACE, - ACTIONS(5004), 1, + ACTIONS(5002), 1, anon_sym_COMMA, STATE(1965), 1, aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64222] = 4, + sym_doc_comment, + [51455] = 4, ACTIONS(898), 1, anon_sym_GT, - ACTIONS(5006), 1, + ACTIONS(5004), 1, anon_sym_COMMA, STATE(1996), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64236] = 4, - ACTIONS(3722), 1, + sym_doc_comment, + [51470] = 4, + ACTIONS(3720), 1, anon_sym_where, - ACTIONS(5008), 1, + ACTIONS(5006), 1, anon_sym_SEMI, STATE(2394), 1, sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64250] = 4, - ACTIONS(4004), 1, + sym_doc_comment, + [51485] = 4, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5008), 1, anon_sym_SEMI, STATE(782), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64264] = 3, - ACTIONS(5014), 1, + sym_doc_comment, + [51500] = 3, + ACTIONS(5012), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5012), 2, + ACTIONS(5010), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64276] = 4, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [51513] = 4, ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4198), 1, anon_sym_COMMA, STATE(2084), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64290] = 4, - ACTIONS(3738), 1, + sym_doc_comment, + [51528] = 4, + ACTIONS(3736), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(5014), 1, anon_sym_SEMI, STATE(425), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64304] = 4, + sym_doc_comment, + [51543] = 4, ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4198), 1, anon_sym_COMMA, STATE(2097), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64318] = 4, - ACTIONS(3983), 1, + sym_doc_comment, + [51558] = 4, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5018), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - ACTIONS(5020), 1, + ACTIONS(5018), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64332] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [51573] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4701), 2, + ACTIONS(4699), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64344] = 4, - ACTIONS(3762), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [51586] = 4, + ACTIONS(3760), 1, anon_sym_RBRACE, - ACTIONS(5022), 1, + ACTIONS(5020), 1, anon_sym_COMMA, STATE(2085), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64358] = 4, - ACTIONS(5024), 1, + sym_doc_comment, + [51601] = 4, + ACTIONS(5022), 1, anon_sym_RBRACE, - ACTIONS(5026), 1, + ACTIONS(5024), 1, anon_sym_COMMA, STATE(2123), 1, aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64372] = 4, - ACTIONS(3762), 1, + sym_doc_comment, + [51616] = 4, + ACTIONS(3760), 1, anon_sym_RBRACE, - ACTIONS(5022), 1, + ACTIONS(5020), 1, anon_sym_COMMA, STATE(2066), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64386] = 3, + sym_doc_comment, + [51631] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(92), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64397] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [51643] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5031), 1, + ACTIONS(5029), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64408] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [51655] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5033), 1, + ACTIONS(5031), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64419] = 3, - ACTIONS(4046), 1, + sym_doc_comment, + [51667] = 3, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(329), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64430] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [51679] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(458), 1, sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64441] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + sym_doc_comment, + [51691] = 2, + ACTIONS(5033), 2, sym_identifier, sym_metavariable, - [64450] = 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [51701] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(149), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64461] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5024), 2, + sym_doc_comment, + [51713] = 2, + ACTIONS(5022), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64470] = 3, - ACTIONS(5037), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [51723] = 3, + ACTIONS(5035), 1, sym_identifier, - ACTIONS(5039), 1, + ACTIONS(5037), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64481] = 3, - ACTIONS(2937), 1, + sym_doc_comment, + [51735] = 3, + ACTIONS(2935), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64492] = 3, - ACTIONS(4046), 1, + sym_doc_comment, + [51747] = 3, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(354), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64503] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [51759] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1372), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64514] = 3, - ACTIONS(5041), 1, + sym_doc_comment, + [51771] = 3, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5043), 1, + ACTIONS(5041), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64525] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [51783] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(324), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64536] = 3, - ACTIONS(4446), 1, + sym_doc_comment, + [51795] = 3, + ACTIONS(4444), 1, sym_identifier, - ACTIONS(4450), 1, + ACTIONS(4448), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64547] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [51807] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(781), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64558] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [51819] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5045), 1, + ACTIONS(5043), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64569] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [51831] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(322), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64580] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51843] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5047), 1, + ACTIONS(5045), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64591] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [51855] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(321), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64602] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51867] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5049), 1, + ACTIONS(5047), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64613] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [51879] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(788), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64624] = 3, - ACTIONS(3987), 1, + sym_doc_comment, + [51891] = 3, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(793), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64635] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51903] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5051), 1, + ACTIONS(5049), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64646] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51915] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5053), 1, + ACTIONS(5051), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64657] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51927] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5055), 1, + ACTIONS(5053), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64668] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [51939] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1669), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64679] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51951] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5057), 1, + ACTIONS(5055), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64690] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [51963] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(463), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64701] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [51975] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5059), 1, + ACTIONS(5057), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64712] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [51987] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(841), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64723] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [51999] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5061), 1, + ACTIONS(5059), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64734] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52011] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(805), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64745] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [52023] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(818), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64756] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5063), 2, + sym_doc_comment, + [52035] = 2, + ACTIONS(5061), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64765] = 3, - ACTIONS(3750), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52045] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(862), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64776] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52057] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(863), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64787] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [52069] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5065), 1, + ACTIONS(5063), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64798] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52081] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(823), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64809] = 3, - ACTIONS(3500), 1, + sym_doc_comment, + [52093] = 3, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - ACTIONS(5067), 1, + ACTIONS(5065), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64820] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52105] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5069), 1, + ACTIONS(5067), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64831] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52117] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(824), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64842] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [52129] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(825), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64853] = 3, - ACTIONS(3987), 1, + sym_doc_comment, + [52141] = 3, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(876), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64864] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5071), 2, + sym_doc_comment, + [52153] = 2, + ACTIONS(5069), 2, sym_identifier, sym_metavariable, - [64873] = 3, - ACTIONS(3744), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52163] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(371), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64884] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [52175] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(889), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64895] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [52187] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5073), 1, + ACTIONS(5071), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64906] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [52199] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(770), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64917] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52211] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(894), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52223] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5075), 1, + ACTIONS(5073), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64939] = 3, - ACTIONS(3967), 1, + sym_doc_comment, + [52235] = 3, + ACTIONS(3965), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64950] = 3, - ACTIONS(3899), 1, + sym_doc_comment, + [52247] = 3, + ACTIONS(3897), 1, anon_sym_COLON_COLON, - ACTIONS(5077), 1, + ACTIONS(5075), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64961] = 3, - ACTIONS(3965), 1, + sym_doc_comment, + [52259] = 3, + ACTIONS(3963), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64972] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52271] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(461), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64983] = 3, - ACTIONS(2722), 1, + sym_doc_comment, + [52283] = 3, + ACTIONS(2720), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [64994] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52295] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5079), 1, + ACTIONS(5077), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65005] = 3, - ACTIONS(3907), 1, + sym_doc_comment, + [52307] = 3, + ACTIONS(3905), 1, anon_sym_COLON_COLON, - ACTIONS(5077), 1, + ACTIONS(5075), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65016] = 3, - ACTIONS(2726), 1, + sym_doc_comment, + [52319] = 3, + ACTIONS(2724), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65027] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, + sym_doc_comment, + [52331] = 2, + ACTIONS(4490), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65036] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5081), 2, + sym_doc_comment, + [52341] = 2, + ACTIONS(5079), 2, sym_identifier, sym_metavariable, - [65045] = 3, - ACTIONS(3911), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52351] = 3, + ACTIONS(3909), 1, anon_sym_COLON_COLON, - ACTIONS(5077), 1, + ACTIONS(5075), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65056] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [52363] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(340), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65067] = 3, - ACTIONS(3494), 1, + sym_doc_comment, + [52375] = 3, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(5083), 1, + ACTIONS(5081), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65078] = 3, - ACTIONS(2245), 1, + sym_doc_comment, + [52387] = 3, + ACTIONS(2243), 1, anon_sym_SQUOTE, STATE(2025), 1, sym_lifetime, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65089] = 3, - ACTIONS(3963), 1, + sym_doc_comment, + [52399] = 3, + ACTIONS(3961), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65100] = 3, - ACTIONS(2484), 1, + sym_doc_comment, + [52411] = 3, + ACTIONS(2482), 1, anon_sym_LPAREN, STATE(865), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65111] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52423] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5085), 1, + ACTIONS(5083), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65122] = 3, - ACTIONS(5087), 1, + sym_doc_comment, + [52435] = 3, + ACTIONS(5085), 1, anon_sym_SEMI, - ACTIONS(5089), 1, + ACTIONS(5087), 1, anon_sym_as, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65133] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [52447] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(474), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65144] = 3, - ACTIONS(5091), 1, + sym_doc_comment, + [52459] = 3, + ACTIONS(5089), 1, anon_sym_LBRACK, - ACTIONS(5093), 1, + ACTIONS(5091), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65155] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5095), 2, + sym_doc_comment, + [52471] = 2, + ACTIONS(5093), 2, sym_identifier, sym_metavariable, - [65164] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4901), 2, + sym_doc_comment, + [52481] = 2, + ACTIONS(4899), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65173] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4890), 2, + sym_doc_comment, + [52491] = 2, + ACTIONS(4888), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65182] = 3, - ACTIONS(3951), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52501] = 3, + ACTIONS(3949), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65193] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52513] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(381), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65204] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52525] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(993), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65215] = 3, - ACTIONS(4046), 1, + sym_doc_comment, + [52537] = 3, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(375), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65226] = 3, - ACTIONS(2961), 1, + sym_doc_comment, + [52549] = 3, + ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65237] = 3, - ACTIONS(5097), 1, + sym_doc_comment, + [52561] = 3, + ACTIONS(5095), 1, anon_sym_LBRACK, - ACTIONS(5099), 1, + ACTIONS(5097), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65248] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [52573] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5101), 1, + ACTIONS(5099), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65259] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52585] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(1008), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65270] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52597] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(1010), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65281] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [52609] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5103), 1, + ACTIONS(5101), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65292] = 3, + sym_doc_comment, + [52621] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(85), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65303] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52633] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(254), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65314] = 3, - ACTIONS(3987), 1, + sym_doc_comment, + [52645] = 3, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(898), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65325] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52657] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5105), 1, + ACTIONS(5103), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65336] = 3, - ACTIONS(3909), 1, + sym_doc_comment, + [52669] = 3, + ACTIONS(3907), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65347] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [52681] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5107), 1, + ACTIONS(5105), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65358] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5109), 2, + sym_doc_comment, + [52693] = 2, + ACTIONS(5107), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65367] = 3, - ACTIONS(3744), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52703] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(369), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65378] = 3, + sym_doc_comment, + [52715] = 3, ACTIONS(85), 1, anon_sym_PIPE, STATE(58), 1, sym_closure_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65389] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52727] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(411), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65400] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5111), 2, + sym_doc_comment, + [52739] = 2, + ACTIONS(5109), 2, sym_identifier, sym_metavariable, - [65409] = 3, - ACTIONS(3945), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52749] = 3, + ACTIONS(3943), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65420] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52761] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(467), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65431] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [52773] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5113), 1, + ACTIONS(5111), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65442] = 3, - ACTIONS(2548), 1, + sym_doc_comment, + [52785] = 3, + ACTIONS(2546), 1, anon_sym_LBRACE, STATE(1097), 1, sym_field_initializer_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65453] = 3, - ACTIONS(3955), 1, + sym_doc_comment, + [52797] = 3, + ACTIONS(3953), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65464] = 3, - ACTIONS(3750), 1, + sym_doc_comment, + [52809] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(954), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65475] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52821] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(357), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65486] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4333), 2, + sym_doc_comment, + [52833] = 2, + ACTIONS(4331), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65495] = 3, - ACTIONS(2245), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52843] = 3, + ACTIONS(2243), 1, anon_sym_SQUOTE, STATE(2233), 1, sym_lifetime, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65506] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [52855] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(412), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65517] = 3, - ACTIONS(5115), 1, + sym_doc_comment, + [52867] = 3, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(5117), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65528] = 3, - ACTIONS(5119), 1, + sym_doc_comment, + [52879] = 3, + ACTIONS(5117), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65539] = 3, + sym_doc_comment, + [52891] = 3, ACTIONS(284), 1, anon_sym_LBRACE, STATE(1026), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65550] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4715), 2, + sym_doc_comment, + [52903] = 2, + ACTIONS(4713), 2, anon_sym_COMMA, anon_sym_GT, - [65559] = 3, - ACTIONS(5123), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [52913] = 3, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5125), 1, + ACTIONS(5123), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65570] = 3, + sym_doc_comment, + [52925] = 3, ACTIONS(284), 1, anon_sym_LBRACE, STATE(1114), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65581] = 3, + sym_doc_comment, + [52937] = 3, ACTIONS(610), 1, anon_sym_LBRACE, STATE(239), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65592] = 3, + sym_doc_comment, + [52949] = 3, ACTIONS(284), 1, anon_sym_LBRACE, STATE(1084), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65603] = 3, + sym_doc_comment, + [52961] = 3, ACTIONS(610), 1, anon_sym_LBRACE, STATE(220), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65614] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [52973] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1692), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65625] = 3, - ACTIONS(3744), 1, + sym_doc_comment, + [52985] = 3, + ACTIONS(3742), 1, anon_sym_LBRACE, STATE(345), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65636] = 3, + sym_doc_comment, + [52997] = 3, ACTIONS(610), 1, anon_sym_LBRACE, STATE(221), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65647] = 3, - ACTIONS(3502), 1, + sym_doc_comment, + [53009] = 3, + ACTIONS(3500), 1, anon_sym_COLON_COLON, - ACTIONS(5067), 1, + ACTIONS(5065), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65658] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [53021] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1661), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65669] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [53033] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5127), 1, + ACTIONS(5125), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65680] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [53045] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5129), 1, + ACTIONS(5127), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65691] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, + sym_doc_comment, + [53057] = 2, + ACTIONS(5129), 2, sym_float_literal, sym_integer_literal, - [65700] = 3, - ACTIONS(5029), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53067] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5133), 1, + ACTIONS(5131), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65711] = 3, - ACTIONS(5135), 1, + sym_doc_comment, + [53079] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5137), 1, + ACTIONS(5135), 1, anon_sym_as, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65722] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [53091] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5139), 1, + ACTIONS(5137), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65733] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, + sym_doc_comment, + [53103] = 2, + ACTIONS(4208), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65742] = 3, - ACTIONS(5141), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53113] = 3, + ACTIONS(5139), 1, anon_sym_LT, STATE(719), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65753] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [53125] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5143), 1, + ACTIONS(5141), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65764] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [53137] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1679), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65775] = 3, - ACTIONS(3724), 1, + sym_doc_comment, + [53149] = 3, + ACTIONS(3722), 1, anon_sym_LT, STATE(713), 1, sym_type_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65786] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [53161] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(952), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65797] = 3, - ACTIONS(4193), 1, + sym_doc_comment, + [53173] = 3, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65808] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [53185] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65819] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5149), 2, + sym_doc_comment, + [53197] = 2, + ACTIONS(5147), 2, anon_sym_const, sym_mutable_specifier, - [65828] = 3, - ACTIONS(3359), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53207] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1364), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65839] = 3, - ACTIONS(3436), 1, + sym_doc_comment, + [53219] = 3, + ACTIONS(3434), 1, anon_sym_COLON_COLON, - ACTIONS(3562), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65850] = 3, + sym_doc_comment, + [53231] = 3, ACTIONS(610), 1, anon_sym_LBRACE, STATE(230), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65861] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [53243] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1703), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65872] = 3, - ACTIONS(3810), 1, + sym_doc_comment, + [53255] = 3, + ACTIONS(3808), 1, anon_sym_COLON, STATE(1924), 1, sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65883] = 3, - ACTIONS(4046), 1, + sym_doc_comment, + [53267] = 3, + ACTIONS(4044), 1, anon_sym_LBRACE, STATE(309), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65894] = 3, - ACTIONS(4189), 1, + sym_doc_comment, + [53279] = 3, + ACTIONS(4187), 1, anon_sym_COLON, - ACTIONS(4193), 1, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65905] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4783), 2, + sym_doc_comment, + [53291] = 2, + ACTIONS(4781), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65914] = 3, - ACTIONS(3750), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53301] = 3, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(964), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65925] = 3, - ACTIONS(3899), 1, + sym_doc_comment, + [53313] = 3, + ACTIONS(3897), 1, anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65936] = 3, - ACTIONS(3907), 1, + sym_doc_comment, + [53325] = 3, + ACTIONS(3905), 1, anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65947] = 3, - ACTIONS(3720), 1, + sym_doc_comment, + [53337] = 3, + ACTIONS(3718), 1, anon_sym_LBRACE, STATE(970), 1, sym_field_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65958] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [53349] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(286), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65969] = 3, - ACTIONS(3738), 1, + sym_doc_comment, + [53361] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(288), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65980] = 3, - ACTIONS(3983), 1, + sym_doc_comment, + [53373] = 3, + ACTIONS(3981), 1, anon_sym_PLUS, - ACTIONS(5153), 1, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(3925), 1, + sym_doc_comment, + [53385] = 3, + ACTIONS(3923), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66002] = 3, - ACTIONS(2484), 1, + sym_doc_comment, + [53397] = 3, + ACTIONS(2482), 1, anon_sym_LPAREN, STATE(1006), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66013] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, + sym_doc_comment, + [53409] = 2, + ACTIONS(4752), 2, anon_sym_COMMA, anon_sym_GT, - [66022] = 3, - ACTIONS(3923), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53419] = 3, + ACTIONS(3921), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66033] = 3, - ACTIONS(2492), 1, + sym_doc_comment, + [53431] = 3, + ACTIONS(2490), 1, anon_sym_LT2, STATE(1027), 1, sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66044] = 3, - ACTIONS(3911), 1, + sym_doc_comment, + [53443] = 3, + ACTIONS(3909), 1, anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66055] = 3, - ACTIONS(3361), 1, + sym_doc_comment, + [53455] = 3, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66066] = 3, - ACTIONS(3494), 1, + sym_doc_comment, + [53467] = 3, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(5157), 1, + ACTIONS(5155), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66077] = 3, + sym_doc_comment, + [53479] = 3, ACTIONS(284), 1, anon_sym_LBRACE, STATE(1089), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66088] = 3, - ACTIONS(4706), 1, + sym_doc_comment, + [53491] = 3, + ACTIONS(4704), 1, sym_identifier, - ACTIONS(4710), 1, + ACTIONS(4708), 1, sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66099] = 3, - ACTIONS(3987), 1, + sym_doc_comment, + [53503] = 3, + ACTIONS(3985), 1, anon_sym_LBRACE, STATE(1009), 1, sym_enum_variant_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66110] = 3, + sym_doc_comment, + [53515] = 3, ACTIONS(85), 1, anon_sym_PIPE, STATE(59), 1, sym_closure_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66121] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2315), 2, + sym_doc_comment, + [53527] = 2, + ACTIONS(2313), 2, anon_sym_COMMA, anon_sym_GT, - [66130] = 3, - ACTIONS(3738), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53537] = 3, + ACTIONS(3736), 1, anon_sym_LBRACE, STATE(475), 1, sym_declaration_list, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66141] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [53549] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1645), 1, sym_parameters, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66152] = 3, + sym_doc_comment, + [53561] = 3, ACTIONS(888), 1, anon_sym_LBRACE, STATE(1435), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66163] = 3, + sym_doc_comment, + [53573] = 3, ACTIONS(610), 1, anon_sym_LBRACE, STATE(238), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66174] = 3, - ACTIONS(5159), 1, + sym_doc_comment, + [53585] = 3, + ACTIONS(5157), 1, anon_sym_SEMI, - ACTIONS(5161), 1, + ACTIONS(5159), 1, anon_sym_as, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66185] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4622), 2, + sym_doc_comment, + [53597] = 2, + ACTIONS(4620), 2, anon_sym_RBRACE, anon_sym_COMMA, - [66194] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, + sym_doc_comment, + [53607] = 2, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [66203] = 3, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53617] = 3, ACTIONS(284), 1, anon_sym_LBRACE, STATE(1063), 1, sym_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66214] = 3, - ACTIONS(3488), 1, + sym_doc_comment, + [53629] = 3, + ACTIONS(3486), 1, anon_sym_BANG, - ACTIONS(5163), 1, + ACTIONS(5161), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66225] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4062), 2, + sym_doc_comment, + [53641] = 2, + ACTIONS(4060), 2, anon_sym_RPAREN, anon_sym_COMMA, - [66234] = 3, - ACTIONS(2596), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53651] = 3, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, + ACTIONS(3876), 1, anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66245] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [53663] = 2, + ACTIONS(5163), 2, + anon_sym_const, + sym_mutable_specifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, + [53673] = 2, ACTIONS(5165), 2, anon_sym_const, sym_mutable_specifier, - [66254] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5167), 2, - anon_sym_const, - sym_mutable_specifier, - [66263] = 3, - ACTIONS(5169), 1, + sym_doc_comment, + [53683] = 3, + ACTIONS(5167), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5169), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66274] = 3, - ACTIONS(5173), 1, + sym_doc_comment, + [53695] = 3, + ACTIONS(5171), 1, anon_sym_LPAREN, - ACTIONS(5175), 1, + ACTIONS(5173), 1, anon_sym_LBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66285] = 3, - ACTIONS(2484), 1, + sym_doc_comment, + [53707] = 3, + ACTIONS(2482), 1, anon_sym_LPAREN, STATE(857), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66296] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, + sym_doc_comment, + [53719] = 2, + ACTIONS(4384), 2, anon_sym_COMMA, anon_sym_GT, - [66305] = 3, - ACTIONS(5177), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53729] = 3, + ACTIONS(5175), 1, anon_sym_SEMI, - ACTIONS(5179), 1, + ACTIONS(5177), 1, anon_sym_as, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66316] = 3, - ACTIONS(5029), 1, + sym_doc_comment, + [53741] = 3, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(5181), 1, + ACTIONS(5179), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66327] = 3, - ACTIONS(3359), 1, + sym_doc_comment, + [53753] = 3, + ACTIONS(3357), 1, anon_sym_LPAREN, STATE(1356), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66338] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, + sym_doc_comment, + [53765] = 2, + ACTIONS(4618), 2, anon_sym_COMMA, anon_sym_PIPE, - [66347] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5183), 2, + sym_doc_comment, + [53775] = 2, + ACTIONS(5181), 2, anon_sym_RPAREN, anon_sym_COMMA, - [66356] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5185), 1, - anon_sym_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66367] = 2, - ACTIONS(3), 2, + sym_doc_comment, + [53785] = 3, + ACTIONS(3981), 1, + anon_sym_PLUS, + ACTIONS(5183), 1, + anon_sym_GT, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - ACTIONS(5187), 2, + sym_doc_comment, + [53797] = 2, + ACTIONS(5185), 2, sym_identifier, sym_metavariable, - [66376] = 2, - ACTIONS(2604), 1, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53807] = 2, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66384] = 2, - ACTIONS(5189), 1, + sym_doc_comment, + [53816] = 2, + ACTIONS(5187), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66392] = 2, - ACTIONS(5191), 1, + sym_doc_comment, + [53825] = 2, + ACTIONS(5189), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66400] = 2, - ACTIONS(5193), 1, + sym_doc_comment, + [53834] = 2, + ACTIONS(5191), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66408] = 2, - ACTIONS(5195), 1, + sym_doc_comment, + [53843] = 2, + ACTIONS(5193), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66416] = 2, - ACTIONS(5197), 1, + sym_doc_comment, + [53852] = 2, + ACTIONS(5195), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66424] = 2, - ACTIONS(5199), 1, + sym_doc_comment, + [53861] = 2, + ACTIONS(5197), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66432] = 2, - ACTIONS(5201), 1, + sym_doc_comment, + [53870] = 2, + ACTIONS(5199), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66440] = 2, - ACTIONS(4167), 1, + sym_doc_comment, + [53879] = 2, + ACTIONS(4165), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66448] = 2, - ACTIONS(5203), 1, + sym_doc_comment, + [53888] = 2, + ACTIONS(5201), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66456] = 2, - ACTIONS(5205), 1, + sym_doc_comment, + [53897] = 2, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66464] = 2, - ACTIONS(5207), 1, + sym_doc_comment, + [53906] = 2, + ACTIONS(5205), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66472] = 2, - ACTIONS(5209), 1, + sym_doc_comment, + [53915] = 2, + ACTIONS(5207), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66480] = 2, - ACTIONS(5211), 1, + sym_doc_comment, + [53924] = 2, + ACTIONS(5209), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66488] = 2, - ACTIONS(2377), 1, + sym_doc_comment, + [53933] = 2, + ACTIONS(2375), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66496] = 2, - ACTIONS(5213), 1, + sym_doc_comment, + [53942] = 2, + ACTIONS(5211), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66504] = 2, - ACTIONS(4695), 1, + sym_doc_comment, + [53951] = 2, + ACTIONS(4693), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66512] = 2, - ACTIONS(4660), 1, + sym_doc_comment, + [53960] = 2, + ACTIONS(4658), 1, anon_sym_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [53969] = 2, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66520] = 2, + sym_doc_comment, + [53978] = 2, ACTIONS(5215), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66528] = 2, + sym_doc_comment, + [53987] = 2, ACTIONS(5217), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66536] = 2, + sym_doc_comment, + [53996] = 2, ACTIONS(5219), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66544] = 2, - ACTIONS(5221), 1, + sym_doc_comment, + [54005] = 2, + ACTIONS(4695), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66552] = 2, - ACTIONS(4697), 1, + sym_doc_comment, + [54014] = 2, + ACTIONS(5221), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66560] = 2, + sym_doc_comment, + [54023] = 2, ACTIONS(5223), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66568] = 2, + sym_doc_comment, + [54032] = 2, ACTIONS(5225), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66576] = 2, - ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66584] = 2, - ACTIONS(3135), 1, + sym_doc_comment, + [54041] = 2, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66592] = 2, - ACTIONS(5229), 1, + sym_doc_comment, + [54050] = 2, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66600] = 2, - ACTIONS(3417), 1, + sym_doc_comment, + [54059] = 2, + ACTIONS(3415), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66608] = 2, - ACTIONS(5231), 1, + sym_doc_comment, + [54068] = 2, + ACTIONS(5229), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66616] = 2, - ACTIONS(5233), 1, + sym_doc_comment, + [54077] = 2, + ACTIONS(5231), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66624] = 2, - ACTIONS(4771), 1, + sym_doc_comment, + [54086] = 2, + ACTIONS(4769), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66632] = 2, - ACTIONS(5235), 1, + sym_doc_comment, + [54095] = 2, + ACTIONS(5233), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66640] = 2, - ACTIONS(5237), 1, + sym_doc_comment, + [54104] = 2, + ACTIONS(5235), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66648] = 2, - ACTIONS(5239), 1, + sym_doc_comment, + [54113] = 2, + ACTIONS(5237), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66656] = 2, - ACTIONS(5241), 1, + sym_doc_comment, + [54122] = 2, + ACTIONS(5239), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66664] = 2, - ACTIONS(3115), 1, + sym_doc_comment, + [54131] = 2, + ACTIONS(3113), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66672] = 2, - ACTIONS(5243), 1, + sym_doc_comment, + [54140] = 2, + ACTIONS(5241), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66680] = 2, - ACTIONS(4637), 1, + sym_doc_comment, + [54149] = 2, + ACTIONS(4635), 1, + sym_identifier, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [54158] = 2, + ACTIONS(5243), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66688] = 2, + sym_doc_comment, + [54167] = 2, ACTIONS(5245), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66696] = 2, + sym_doc_comment, + [54176] = 2, ACTIONS(5247), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66704] = 2, + sym_doc_comment, + [54185] = 2, ACTIONS(5249), 1, - sym_identifier, - ACTIONS(3), 2, + anon_sym_fn, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66712] = 2, + sym_doc_comment, + [54194] = 2, ACTIONS(5251), 1, - anon_sym_fn, - ACTIONS(3), 2, + anon_sym_RBRACE, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66720] = 2, + sym_doc_comment, + [54203] = 2, ACTIONS(5253), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + sym_identifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66728] = 2, + sym_doc_comment, + [54212] = 2, ACTIONS(5255), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66736] = 2, + sym_doc_comment, + [54221] = 2, ACTIONS(5257), 1, - sym_identifier, - ACTIONS(3), 2, + sym_self, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66744] = 2, + sym_doc_comment, + [54230] = 2, ACTIONS(5259), 1, - sym_self, - ACTIONS(3), 2, + anon_sym_EQ_GT, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66752] = 2, + sym_doc_comment, + [54239] = 2, ACTIONS(5261), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, + anon_sym_fn, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66760] = 2, + sym_doc_comment, + [54248] = 2, ACTIONS(5263), 1, - anon_sym_fn, - ACTIONS(3), 2, + sym_identifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66768] = 2, + sym_doc_comment, + [54257] = 2, ACTIONS(5265), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66776] = 2, + sym_doc_comment, + [54266] = 2, ACTIONS(5267), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66784] = 2, + sym_doc_comment, + [54275] = 2, ACTIONS(5269), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66792] = 2, + sym_doc_comment, + [54284] = 2, ACTIONS(5271), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66800] = 2, + sym_doc_comment, + [54293] = 2, ACTIONS(5273), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66808] = 2, + sym_doc_comment, + [54302] = 2, ACTIONS(5275), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66816] = 2, + sym_doc_comment, + [54311] = 2, ACTIONS(5277), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66824] = 2, - ACTIONS(5279), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66832] = 2, - ACTIONS(5281), 1, + sym_doc_comment, + [54320] = 2, + ACTIONS(5279), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66840] = 2, - ACTIONS(5283), 1, + sym_doc_comment, + [54329] = 2, + ACTIONS(5281), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66848] = 2, - ACTIONS(4723), 1, + sym_doc_comment, + [54338] = 2, + ACTIONS(4721), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66856] = 2, - ACTIONS(5285), 1, + sym_doc_comment, + [54347] = 2, + ACTIONS(5283), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66864] = 2, - ACTIONS(4727), 1, + sym_doc_comment, + [54356] = 2, + ACTIONS(4725), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66872] = 2, - ACTIONS(5287), 1, + sym_doc_comment, + [54365] = 2, + ACTIONS(5285), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66880] = 2, - ACTIONS(5289), 1, + sym_doc_comment, + [54374] = 2, + ACTIONS(5287), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66888] = 2, - ACTIONS(4014), 1, + sym_doc_comment, + [54383] = 2, + ACTIONS(4012), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66896] = 2, - ACTIONS(2596), 1, + sym_doc_comment, + [54392] = 2, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66904] = 2, - ACTIONS(5291), 1, + sym_doc_comment, + [54401] = 2, + ACTIONS(5289), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66912] = 2, - ACTIONS(5163), 1, + sym_doc_comment, + [54410] = 2, + ACTIONS(5161), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66920] = 2, - ACTIONS(5293), 1, + sym_doc_comment, + [54419] = 2, + ACTIONS(5291), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66928] = 2, - ACTIONS(5295), 1, + sym_doc_comment, + [54428] = 2, + ACTIONS(5293), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66936] = 2, - ACTIONS(5297), 1, + sym_doc_comment, + [54437] = 2, + ACTIONS(5295), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66944] = 2, - ACTIONS(5299), 1, + sym_doc_comment, + [54446] = 2, + ACTIONS(5297), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym_block_comment, + sym_line_comment, + sym_doc_comment, + [54455] = 2, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66952] = 2, + sym_doc_comment, + [54464] = 2, ACTIONS(5301), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66960] = 2, + sym_doc_comment, + [54473] = 2, ACTIONS(5303), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66968] = 2, + sym_doc_comment, + [54482] = 2, ACTIONS(5305), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66976] = 2, - ACTIONS(5307), 1, + sym_doc_comment, + [54491] = 2, + ACTIONS(4739), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66984] = 2, - ACTIONS(4741), 1, - sym_identifier, - ACTIONS(3), 2, + sym_doc_comment, + [54500] = 2, + ACTIONS(5307), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [66992] = 2, + sym_doc_comment, + [54509] = 2, ACTIONS(5309), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + sym_identifier, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67000] = 2, + sym_doc_comment, + [54518] = 2, ACTIONS(5311), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67008] = 2, + sym_doc_comment, + [54527] = 2, ACTIONS(5313), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67016] = 2, - ACTIONS(5315), 1, - sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67024] = 2, - ACTIONS(2405), 1, + sym_doc_comment, + [54536] = 2, + ACTIONS(2403), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67032] = 2, - ACTIONS(5317), 1, + sym_doc_comment, + [54545] = 2, + ACTIONS(5315), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67040] = 2, - ACTIONS(5319), 1, + sym_doc_comment, + [54554] = 2, + ACTIONS(5317), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67048] = 2, - ACTIONS(5321), 1, + sym_doc_comment, + [54563] = 2, + ACTIONS(5319), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67056] = 2, - ACTIONS(5323), 1, + sym_doc_comment, + [54572] = 2, + ACTIONS(5321), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67064] = 2, - ACTIONS(5325), 1, + sym_doc_comment, + [54581] = 2, + ACTIONS(5323), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67072] = 2, - ACTIONS(5327), 1, + sym_doc_comment, + [54590] = 2, + ACTIONS(5325), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67080] = 2, + sym_doc_comment, + [54599] = 2, ACTIONS(552), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67088] = 2, - ACTIONS(5329), 1, + sym_doc_comment, + [54608] = 2, + ACTIONS(5327), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67096] = 2, - ACTIONS(5331), 1, + sym_doc_comment, + [54617] = 2, + ACTIONS(5329), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67104] = 2, - ACTIONS(5333), 1, + sym_doc_comment, + [54626] = 2, + ACTIONS(5331), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67112] = 2, - ACTIONS(5335), 1, + sym_doc_comment, + [54635] = 2, + ACTIONS(5333), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67120] = 2, - ACTIONS(5337), 1, + sym_doc_comment, + [54644] = 2, + ACTIONS(5335), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67128] = 2, - ACTIONS(5339), 1, + sym_doc_comment, + [54653] = 2, + ACTIONS(5337), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67136] = 2, - ACTIONS(5341), 1, + sym_doc_comment, + [54662] = 2, + ACTIONS(5339), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67144] = 2, - ACTIONS(5343), 1, + sym_doc_comment, + [54671] = 2, + ACTIONS(5341), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67152] = 2, - ACTIONS(5345), 1, + sym_doc_comment, + [54680] = 2, + ACTIONS(5343), 1, anon_sym_LT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67160] = 2, - ACTIONS(5347), 1, + sym_doc_comment, + [54689] = 2, + ACTIONS(5345), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67168] = 2, - ACTIONS(4561), 1, + sym_doc_comment, + [54698] = 2, + ACTIONS(4559), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67176] = 2, - ACTIONS(5349), 1, + sym_doc_comment, + [54707] = 2, + ACTIONS(5347), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67184] = 2, - ACTIONS(5351), 1, + sym_doc_comment, + [54716] = 2, + ACTIONS(5349), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67192] = 2, - ACTIONS(5353), 1, + sym_doc_comment, + [54725] = 2, + ACTIONS(5351), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67200] = 2, - ACTIONS(4800), 1, + sym_doc_comment, + [54734] = 2, + ACTIONS(4798), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67208] = 2, - ACTIONS(5355), 1, + sym_doc_comment, + [54743] = 2, + ACTIONS(5353), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67216] = 2, - ACTIONS(3494), 1, + sym_doc_comment, + [54752] = 2, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67224] = 2, - ACTIONS(3440), 1, + sym_doc_comment, + [54761] = 2, + ACTIONS(3438), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67232] = 2, - ACTIONS(5357), 1, + sym_doc_comment, + [54770] = 2, + ACTIONS(5355), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67240] = 2, - ACTIONS(5359), 1, + sym_doc_comment, + [54779] = 2, + ACTIONS(5357), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67248] = 2, - ACTIONS(4066), 1, + sym_doc_comment, + [54788] = 2, + ACTIONS(4064), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67256] = 2, - ACTIONS(4313), 1, + sym_doc_comment, + [54797] = 2, + ACTIONS(4311), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67264] = 2, - ACTIONS(5361), 1, + sym_doc_comment, + [54806] = 2, + ACTIONS(5359), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67272] = 2, - ACTIONS(5363), 1, + sym_doc_comment, + [54815] = 2, + ACTIONS(5361), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67280] = 2, - ACTIONS(4325), 1, + sym_doc_comment, + [54824] = 2, + ACTIONS(4323), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67288] = 2, - ACTIONS(4814), 1, + sym_doc_comment, + [54833] = 2, + ACTIONS(4812), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67296] = 2, - ACTIONS(5365), 1, + sym_doc_comment, + [54842] = 2, + ACTIONS(5363), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67304] = 2, - ACTIONS(5147), 1, + sym_doc_comment, + [54851] = 2, + ACTIONS(5145), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67312] = 2, - ACTIONS(4689), 1, + sym_doc_comment, + [54860] = 2, + ACTIONS(4687), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67320] = 2, - ACTIONS(4671), 1, + sym_doc_comment, + [54869] = 2, + ACTIONS(4669), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67328] = 2, - ACTIONS(5367), 1, + sym_doc_comment, + [54878] = 2, + ACTIONS(5365), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67336] = 2, - ACTIONS(5181), 1, + sym_doc_comment, + [54887] = 2, + ACTIONS(5179), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67344] = 2, - ACTIONS(4531), 1, + sym_doc_comment, + [54896] = 2, + ACTIONS(4529), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67352] = 2, - ACTIONS(5369), 1, + sym_doc_comment, + [54905] = 2, + ACTIONS(5367), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67360] = 2, - ACTIONS(5371), 1, + sym_doc_comment, + [54914] = 2, + ACTIONS(5369), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67368] = 2, - ACTIONS(5373), 1, + sym_doc_comment, + [54923] = 2, + ACTIONS(5371), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67376] = 2, - ACTIONS(5375), 1, + sym_doc_comment, + [54932] = 2, + ACTIONS(5373), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67384] = 2, - ACTIONS(5377), 1, + sym_doc_comment, + [54941] = 2, + ACTIONS(5375), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67392] = 2, - ACTIONS(5031), 1, + sym_doc_comment, + [54950] = 2, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67400] = 2, - ACTIONS(5379), 1, + sym_doc_comment, + [54959] = 2, + ACTIONS(5377), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67408] = 2, - ACTIONS(5381), 1, + sym_doc_comment, + [54968] = 2, + ACTIONS(5379), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67416] = 2, + sym_doc_comment, + [54977] = 2, ACTIONS(368), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67424] = 2, - ACTIONS(5383), 1, + sym_doc_comment, + [54986] = 2, + ACTIONS(5381), 1, anon_sym_LBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67432] = 2, - ACTIONS(2636), 1, + sym_doc_comment, + [54995] = 2, + ACTIONS(2634), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67440] = 2, - ACTIONS(4246), 1, + sym_doc_comment, + [55004] = 2, + ACTIONS(4244), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67448] = 2, - ACTIONS(5385), 1, + sym_doc_comment, + [55013] = 2, + ACTIONS(5383), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(5387), 1, + sym_doc_comment, + [55022] = 2, + ACTIONS(5385), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(3955), 1, + sym_doc_comment, + [55031] = 2, + ACTIONS(3953), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67472] = 2, - ACTIONS(4840), 1, + sym_doc_comment, + [55040] = 2, + ACTIONS(4838), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67480] = 2, - ACTIONS(5389), 1, + sym_doc_comment, + [55049] = 2, + ACTIONS(5387), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67488] = 2, - ACTIONS(2347), 1, + sym_doc_comment, + [55058] = 2, + ACTIONS(2345), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67496] = 2, - ACTIONS(5391), 1, + sym_doc_comment, + [55067] = 2, + ACTIONS(5389), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67504] = 2, - ACTIONS(3945), 1, + sym_doc_comment, + [55076] = 2, + ACTIONS(3943), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67512] = 2, - ACTIONS(3907), 1, + sym_doc_comment, + [55085] = 2, + ACTIONS(3905), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(5393), 1, + sym_doc_comment, + [55094] = 2, + ACTIONS(5391), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(5395), 1, + sym_doc_comment, + [55103] = 2, + ACTIONS(5393), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(2598), 1, + sym_doc_comment, + [55112] = 2, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67544] = 2, - ACTIONS(5397), 1, + sym_doc_comment, + [55121] = 2, + ACTIONS(5395), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67552] = 2, - ACTIONS(3371), 1, + sym_doc_comment, + [55130] = 2, + ACTIONS(3369), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67560] = 2, - ACTIONS(5399), 1, + sym_doc_comment, + [55139] = 2, + ACTIONS(5397), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67568] = 2, - ACTIONS(5401), 1, + sym_doc_comment, + [55148] = 2, + ACTIONS(5399), 1, ts_builtin_sym_end, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(2730), 1, + sym_doc_comment, + [55157] = 2, + ACTIONS(2728), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67584] = 2, - ACTIONS(5403), 1, + sym_doc_comment, + [55166] = 2, + ACTIONS(5401), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67592] = 2, - ACTIONS(3137), 1, + sym_doc_comment, + [55175] = 2, + ACTIONS(3135), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67600] = 2, - ACTIONS(5405), 1, + sym_doc_comment, + [55184] = 2, + ACTIONS(5403), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67608] = 2, - ACTIONS(5407), 1, + sym_doc_comment, + [55193] = 2, + ACTIONS(5405), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(5409), 1, + sym_doc_comment, + [55202] = 2, + ACTIONS(5407), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(4862), 1, + sym_doc_comment, + [55211] = 2, + ACTIONS(4860), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(5411), 1, + sym_doc_comment, + [55220] = 2, + ACTIONS(5409), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67640] = 2, - ACTIONS(5413), 1, + sym_doc_comment, + [55229] = 2, + ACTIONS(5411), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(5415), 1, + sym_doc_comment, + [55238] = 2, + ACTIONS(5413), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67656] = 2, - ACTIONS(4224), 1, + sym_doc_comment, + [55247] = 2, + ACTIONS(4222), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67664] = 2, - ACTIONS(4155), 1, + sym_doc_comment, + [55256] = 2, + ACTIONS(4153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67672] = 2, - ACTIONS(5417), 1, + sym_doc_comment, + [55265] = 2, + ACTIONS(5415), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(3963), 1, + sym_doc_comment, + [55274] = 2, + ACTIONS(3961), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(4072), 1, + sym_doc_comment, + [55283] = 2, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(5419), 1, + sym_doc_comment, + [55292] = 2, + ACTIONS(5417), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(5421), 1, + sym_doc_comment, + [55301] = 2, + ACTIONS(5419), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(4040), 1, + sym_doc_comment, + [55310] = 2, + ACTIONS(4038), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67720] = 2, - ACTIONS(5423), 1, + sym_doc_comment, + [55319] = 2, + ACTIONS(5421), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67728] = 2, - ACTIONS(5425), 1, + sym_doc_comment, + [55328] = 2, + ACTIONS(5423), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67736] = 2, - ACTIONS(5427), 1, + sym_doc_comment, + [55337] = 2, + ACTIONS(5425), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67744] = 2, - ACTIONS(5429), 1, + sym_doc_comment, + [55346] = 2, + ACTIONS(5427), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67752] = 2, - ACTIONS(5431), 1, + sym_doc_comment, + [55355] = 2, + ACTIONS(5429), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67760] = 2, - ACTIONS(5433), 1, + sym_doc_comment, + [55364] = 2, + ACTIONS(5431), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67768] = 2, - ACTIONS(5435), 1, + sym_doc_comment, + [55373] = 2, + ACTIONS(5433), 1, anon_sym_LBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67776] = 2, - ACTIONS(5437), 1, + sym_doc_comment, + [55382] = 2, + ACTIONS(5435), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67784] = 2, - ACTIONS(4924), 1, + sym_doc_comment, + [55391] = 2, + ACTIONS(4922), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67792] = 2, - ACTIONS(5439), 1, + sym_doc_comment, + [55400] = 2, + ACTIONS(5437), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67800] = 2, - ACTIONS(5441), 1, + sym_doc_comment, + [55409] = 2, + ACTIONS(5439), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67808] = 2, - ACTIONS(5443), 1, + sym_doc_comment, + [55418] = 2, + ACTIONS(5441), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(5445), 1, + sym_doc_comment, + [55427] = 2, + ACTIONS(5443), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67824] = 2, - ACTIONS(5447), 1, + sym_doc_comment, + [55436] = 2, + ACTIONS(5445), 1, anon_sym_LBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67832] = 2, - ACTIONS(5449), 1, + sym_doc_comment, + [55445] = 2, + ACTIONS(5447), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(3436), 1, + sym_doc_comment, + [55454] = 2, + ACTIONS(3434), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(5029), 1, + sym_doc_comment, + [55463] = 2, + ACTIONS(5027), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67856] = 2, - ACTIONS(5451), 1, + sym_doc_comment, + [55472] = 2, + ACTIONS(5449), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67864] = 2, - ACTIONS(5155), 1, + sym_doc_comment, + [55481] = 2, + ACTIONS(5153), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67872] = 2, - ACTIONS(3967), 1, + sym_doc_comment, + [55490] = 2, + ACTIONS(3965), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67880] = 2, - ACTIONS(5453), 1, + sym_doc_comment, + [55499] = 2, + ACTIONS(5451), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(5455), 1, + sym_doc_comment, + [55508] = 2, + ACTIONS(5453), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(5457), 1, + sym_doc_comment, + [55517] = 2, + ACTIONS(5455), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67904] = 2, - ACTIONS(5459), 1, + sym_doc_comment, + [55526] = 2, + ACTIONS(5457), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67912] = 2, - ACTIONS(2311), 1, + sym_doc_comment, + [55535] = 2, + ACTIONS(2309), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67920] = 2, - ACTIONS(4952), 1, + sym_doc_comment, + [55544] = 2, + ACTIONS(4950), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67928] = 2, - ACTIONS(5461), 1, + sym_doc_comment, + [55553] = 2, + ACTIONS(5459), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67936] = 2, - ACTIONS(5463), 1, + sym_doc_comment, + [55562] = 2, + ACTIONS(5461), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67944] = 2, - ACTIONS(5465), 1, + sym_doc_comment, + [55571] = 2, + ACTIONS(5463), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5467), 1, + sym_doc_comment, + [55580] = 2, + ACTIONS(5465), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5469), 1, + sym_doc_comment, + [55589] = 2, + ACTIONS(5467), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67968] = 2, - ACTIONS(5471), 1, + sym_doc_comment, + [55598] = 2, + ACTIONS(5469), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67976] = 2, - ACTIONS(5473), 1, + sym_doc_comment, + [55607] = 2, + ACTIONS(5471), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67984] = 2, - ACTIONS(5475), 1, + sym_doc_comment, + [55616] = 2, + ACTIONS(5473), 1, anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [67992] = 2, - ACTIONS(5477), 1, + sym_doc_comment, + [55625] = 2, + ACTIONS(5475), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68000] = 2, - ACTIONS(5479), 1, + sym_doc_comment, + [55634] = 2, + ACTIONS(5477), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5481), 1, + sym_doc_comment, + [55643] = 2, + ACTIONS(5479), 1, anon_sym_RBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5483), 1, + sym_doc_comment, + [55652] = 2, + ACTIONS(5481), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5485), 1, + sym_doc_comment, + [55661] = 2, + ACTIONS(5483), 1, anon_sym_LBRACK, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68032] = 2, - ACTIONS(5487), 1, + sym_doc_comment, + [55670] = 2, + ACTIONS(5485), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68040] = 2, - ACTIONS(5489), 1, + sym_doc_comment, + [55679] = 2, + ACTIONS(5487), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68048] = 2, - ACTIONS(5491), 1, + sym_doc_comment, + [55688] = 2, + ACTIONS(5489), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(5493), 1, + sym_doc_comment, + [55697] = 2, + ACTIONS(5491), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68064] = 2, - ACTIONS(4187), 1, + sym_doc_comment, + [55706] = 2, + ACTIONS(4185), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(5495), 1, + sym_doc_comment, + [55715] = 2, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68080] = 2, - ACTIONS(5497), 1, + sym_doc_comment, + [55724] = 2, + ACTIONS(5495), 1, anon_sym_LPAREN, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68088] = 2, - ACTIONS(3395), 1, + sym_doc_comment, + [55733] = 2, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(5499), 1, + sym_doc_comment, + [55742] = 2, + ACTIONS(5497), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5002), 1, + sym_doc_comment, + [55751] = 2, + ACTIONS(5000), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(5501), 1, + sym_doc_comment, + [55760] = 2, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(4442), 1, + sym_doc_comment, + [55769] = 2, + ACTIONS(4440), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(5503), 1, + sym_doc_comment, + [55778] = 2, + ACTIONS(5501), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(3113), 1, + sym_doc_comment, + [55787] = 2, + ACTIONS(3111), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(5505), 1, + sym_doc_comment, + [55796] = 2, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5507), 1, + sym_doc_comment, + [55805] = 2, + ACTIONS(5505), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(5509), 1, + sym_doc_comment, + [55814] = 2, + ACTIONS(5507), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(5511), 1, + sym_doc_comment, + [55823] = 2, + ACTIONS(5509), 1, anon_sym_fn, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68176] = 2, - ACTIONS(5513), 1, + sym_doc_comment, + [55832] = 2, + ACTIONS(5511), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5515), 1, + sym_doc_comment, + [55841] = 2, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(5517), 1, + sym_doc_comment, + [55850] = 2, + ACTIONS(5515), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68200] = 2, - ACTIONS(5519), 1, + sym_doc_comment, + [55859] = 2, + ACTIONS(5517), 1, anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68208] = 2, - ACTIONS(5521), 1, + sym_doc_comment, + [55868] = 2, + ACTIONS(5519), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68216] = 2, - ACTIONS(5033), 1, + sym_doc_comment, + [55877] = 2, + ACTIONS(5031), 1, anon_sym_SEMI, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(5523), 1, + sym_doc_comment, + [55886] = 2, + ACTIONS(5521), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, - [68232] = 2, - ACTIONS(5525), 1, + sym_doc_comment, + [55895] = 2, + ACTIONS(5523), 1, sym_identifier, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_block_comment, sym_line_comment, + sym_doc_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(628)] = 0, - [SMALL_STATE(629)] = 129, - [SMALL_STATE(630)] = 258, - [SMALL_STATE(631)] = 387, - [SMALL_STATE(632)] = 516, - [SMALL_STATE(633)] = 645, - [SMALL_STATE(634)] = 776, - [SMALL_STATE(635)] = 905, - [SMALL_STATE(636)] = 1034, - [SMALL_STATE(637)] = 1163, - [SMALL_STATE(638)] = 1292, - [SMALL_STATE(639)] = 1421, - [SMALL_STATE(640)] = 1550, - [SMALL_STATE(641)] = 1679, - [SMALL_STATE(642)] = 1808, - [SMALL_STATE(643)] = 1937, - [SMALL_STATE(644)] = 2066, - [SMALL_STATE(645)] = 2195, - [SMALL_STATE(646)] = 2324, - [SMALL_STATE(647)] = 2453, - [SMALL_STATE(648)] = 2582, - [SMALL_STATE(649)] = 2711, - [SMALL_STATE(650)] = 2840, - [SMALL_STATE(651)] = 2969, - [SMALL_STATE(652)] = 3098, - [SMALL_STATE(653)] = 3227, - [SMALL_STATE(654)] = 3356, - [SMALL_STATE(655)] = 3485, - [SMALL_STATE(656)] = 3614, - [SMALL_STATE(657)] = 3743, - [SMALL_STATE(658)] = 3872, - [SMALL_STATE(659)] = 4001, - [SMALL_STATE(660)] = 4130, - [SMALL_STATE(661)] = 4259, - [SMALL_STATE(662)] = 4388, - [SMALL_STATE(663)] = 4517, - [SMALL_STATE(664)] = 4646, - [SMALL_STATE(665)] = 4717, - [SMALL_STATE(666)] = 4846, - [SMALL_STATE(667)] = 4975, - [SMALL_STATE(668)] = 5104, - [SMALL_STATE(669)] = 5233, - [SMALL_STATE(670)] = 5362, - [SMALL_STATE(671)] = 5491, - [SMALL_STATE(672)] = 5620, - [SMALL_STATE(673)] = 5749, - [SMALL_STATE(674)] = 5878, - [SMALL_STATE(675)] = 6007, - [SMALL_STATE(676)] = 6136, - [SMALL_STATE(677)] = 6265, - [SMALL_STATE(678)] = 6394, - [SMALL_STATE(679)] = 6523, - [SMALL_STATE(680)] = 6652, - [SMALL_STATE(681)] = 6781, - [SMALL_STATE(682)] = 6910, - [SMALL_STATE(683)] = 7039, - [SMALL_STATE(684)] = 7168, - [SMALL_STATE(685)] = 7297, - [SMALL_STATE(686)] = 7426, - [SMALL_STATE(687)] = 7555, - [SMALL_STATE(688)] = 7684, - [SMALL_STATE(689)] = 7813, - [SMALL_STATE(690)] = 7942, - [SMALL_STATE(691)] = 8071, - [SMALL_STATE(692)] = 8200, - [SMALL_STATE(693)] = 8329, - [SMALL_STATE(694)] = 8458, - [SMALL_STATE(695)] = 8587, - [SMALL_STATE(696)] = 8716, - [SMALL_STATE(697)] = 8845, - [SMALL_STATE(698)] = 8974, - [SMALL_STATE(699)] = 9103, - [SMALL_STATE(700)] = 9232, - [SMALL_STATE(701)] = 9361, - [SMALL_STATE(702)] = 9490, - [SMALL_STATE(703)] = 9619, - [SMALL_STATE(704)] = 9748, - [SMALL_STATE(705)] = 9877, - [SMALL_STATE(706)] = 10006, - [SMALL_STATE(707)] = 10135, - [SMALL_STATE(708)] = 10264, - [SMALL_STATE(709)] = 10393, - [SMALL_STATE(710)] = 10522, - [SMALL_STATE(711)] = 10651, - [SMALL_STATE(712)] = 10780, - [SMALL_STATE(713)] = 10909, - [SMALL_STATE(714)] = 11038, - [SMALL_STATE(715)] = 11167, - [SMALL_STATE(716)] = 11296, - [SMALL_STATE(717)] = 11425, - [SMALL_STATE(718)] = 11554, - [SMALL_STATE(719)] = 11683, - [SMALL_STATE(720)] = 11812, - [SMALL_STATE(721)] = 11941, - [SMALL_STATE(722)] = 12070, - [SMALL_STATE(723)] = 12199, - [SMALL_STATE(724)] = 12328, - [SMALL_STATE(725)] = 12457, - [SMALL_STATE(726)] = 12586, - [SMALL_STATE(727)] = 12715, - [SMALL_STATE(728)] = 12844, - [SMALL_STATE(729)] = 12973, - [SMALL_STATE(730)] = 13102, - [SMALL_STATE(731)] = 13231, - [SMALL_STATE(732)] = 13360, - [SMALL_STATE(733)] = 13489, - [SMALL_STATE(734)] = 13618, - [SMALL_STATE(735)] = 13747, - [SMALL_STATE(736)] = 13876, - [SMALL_STATE(737)] = 14005, - [SMALL_STATE(738)] = 14134, - [SMALL_STATE(739)] = 14200, - [SMALL_STATE(740)] = 14266, - [SMALL_STATE(741)] = 14332, - [SMALL_STATE(742)] = 14398, - [SMALL_STATE(743)] = 14460, - [SMALL_STATE(744)] = 14530, - [SMALL_STATE(745)] = 14597, - [SMALL_STATE(746)] = 14664, - [SMALL_STATE(747)] = 14720, - [SMALL_STATE(748)] = 14784, - [SMALL_STATE(749)] = 14848, - [SMALL_STATE(750)] = 14908, - [SMALL_STATE(751)] = 14968, - [SMALL_STATE(752)] = 15028, - [SMALL_STATE(753)] = 15090, - [SMALL_STATE(754)] = 15154, - [SMALL_STATE(755)] = 15210, - [SMALL_STATE(756)] = 15266, - [SMALL_STATE(757)] = 15330, - [SMALL_STATE(758)] = 15390, - [SMALL_STATE(759)] = 15446, - [SMALL_STATE(760)] = 15502, - [SMALL_STATE(761)] = 15561, - [SMALL_STATE(762)] = 15618, - [SMALL_STATE(763)] = 15675, - [SMALL_STATE(764)] = 15734, - [SMALL_STATE(765)] = 15791, - [SMALL_STATE(766)] = 15850, - [SMALL_STATE(767)] = 15905, - [SMALL_STATE(768)] = 15962, - [SMALL_STATE(769)] = 16016, - [SMALL_STATE(770)] = 16070, - [SMALL_STATE(771)] = 16124, - [SMALL_STATE(772)] = 16178, - [SMALL_STATE(773)] = 16236, - [SMALL_STATE(774)] = 16292, - [SMALL_STATE(775)] = 16346, - [SMALL_STATE(776)] = 16400, - [SMALL_STATE(777)] = 16454, - [SMALL_STATE(778)] = 16508, - [SMALL_STATE(779)] = 16562, - [SMALL_STATE(780)] = 16616, - [SMALL_STATE(781)] = 16670, - [SMALL_STATE(782)] = 16724, - [SMALL_STATE(783)] = 16778, - [SMALL_STATE(784)] = 16832, - [SMALL_STATE(785)] = 16886, - [SMALL_STATE(786)] = 16940, - [SMALL_STATE(787)] = 16994, - [SMALL_STATE(788)] = 17048, - [SMALL_STATE(789)] = 17102, - [SMALL_STATE(790)] = 17156, - [SMALL_STATE(791)] = 17214, - [SMALL_STATE(792)] = 17268, - [SMALL_STATE(793)] = 17322, - [SMALL_STATE(794)] = 17376, - [SMALL_STATE(795)] = 17430, - [SMALL_STATE(796)] = 17484, - [SMALL_STATE(797)] = 17538, - [SMALL_STATE(798)] = 17592, - [SMALL_STATE(799)] = 17646, - [SMALL_STATE(800)] = 17704, - [SMALL_STATE(801)] = 17758, - [SMALL_STATE(802)] = 17812, - [SMALL_STATE(803)] = 17866, - [SMALL_STATE(804)] = 17920, - [SMALL_STATE(805)] = 17976, - [SMALL_STATE(806)] = 18030, - [SMALL_STATE(807)] = 18086, - [SMALL_STATE(808)] = 18140, - [SMALL_STATE(809)] = 18196, - [SMALL_STATE(810)] = 18250, - [SMALL_STATE(811)] = 18304, - [SMALL_STATE(812)] = 18358, - [SMALL_STATE(813)] = 18412, - [SMALL_STATE(814)] = 18466, - [SMALL_STATE(815)] = 18520, - [SMALL_STATE(816)] = 18574, - [SMALL_STATE(817)] = 18628, - [SMALL_STATE(818)] = 18682, - [SMALL_STATE(819)] = 18736, - [SMALL_STATE(820)] = 18790, - [SMALL_STATE(821)] = 18844, - [SMALL_STATE(822)] = 18898, - [SMALL_STATE(823)] = 18952, - [SMALL_STATE(824)] = 19006, - [SMALL_STATE(825)] = 19060, - [SMALL_STATE(826)] = 19114, - [SMALL_STATE(827)] = 19168, - [SMALL_STATE(828)] = 19222, - [SMALL_STATE(829)] = 19276, - [SMALL_STATE(830)] = 19330, - [SMALL_STATE(831)] = 19384, - [SMALL_STATE(832)] = 19440, - [SMALL_STATE(833)] = 19494, - [SMALL_STATE(834)] = 19548, - [SMALL_STATE(835)] = 19602, - [SMALL_STATE(836)] = 19656, - [SMALL_STATE(837)] = 19710, - [SMALL_STATE(838)] = 19764, - [SMALL_STATE(839)] = 19818, - [SMALL_STATE(840)] = 19872, - [SMALL_STATE(841)] = 19926, - [SMALL_STATE(842)] = 19980, - [SMALL_STATE(843)] = 20034, - [SMALL_STATE(844)] = 20088, - [SMALL_STATE(845)] = 20142, - [SMALL_STATE(846)] = 20196, - [SMALL_STATE(847)] = 20250, - [SMALL_STATE(848)] = 20304, - [SMALL_STATE(849)] = 20358, - [SMALL_STATE(850)] = 20412, - [SMALL_STATE(851)] = 20466, - [SMALL_STATE(852)] = 20520, - [SMALL_STATE(853)] = 20574, - [SMALL_STATE(854)] = 20628, - [SMALL_STATE(855)] = 20682, - [SMALL_STATE(856)] = 20736, - [SMALL_STATE(857)] = 20790, - [SMALL_STATE(858)] = 20846, - [SMALL_STATE(859)] = 20900, - [SMALL_STATE(860)] = 20954, - [SMALL_STATE(861)] = 21008, - [SMALL_STATE(862)] = 21062, - [SMALL_STATE(863)] = 21116, - [SMALL_STATE(864)] = 21170, - [SMALL_STATE(865)] = 21224, - [SMALL_STATE(866)] = 21280, - [SMALL_STATE(867)] = 21336, - [SMALL_STATE(868)] = 21390, - [SMALL_STATE(869)] = 21444, - [SMALL_STATE(870)] = 21498, - [SMALL_STATE(871)] = 21552, - [SMALL_STATE(872)] = 21606, - [SMALL_STATE(873)] = 21662, - [SMALL_STATE(874)] = 21716, - [SMALL_STATE(875)] = 21770, - [SMALL_STATE(876)] = 21824, - [SMALL_STATE(877)] = 21878, - [SMALL_STATE(878)] = 21932, - [SMALL_STATE(879)] = 21986, - [SMALL_STATE(880)] = 22040, - [SMALL_STATE(881)] = 22096, - [SMALL_STATE(882)] = 22150, - [SMALL_STATE(883)] = 22204, - [SMALL_STATE(884)] = 22258, - [SMALL_STATE(885)] = 22314, - [SMALL_STATE(886)] = 22368, - [SMALL_STATE(887)] = 22422, - [SMALL_STATE(888)] = 22476, - [SMALL_STATE(889)] = 22530, - [SMALL_STATE(890)] = 22584, - [SMALL_STATE(891)] = 22638, - [SMALL_STATE(892)] = 22692, - [SMALL_STATE(893)] = 22746, - [SMALL_STATE(894)] = 22800, - [SMALL_STATE(895)] = 22854, - [SMALL_STATE(896)] = 22908, - [SMALL_STATE(897)] = 22962, - [SMALL_STATE(898)] = 23016, - [SMALL_STATE(899)] = 23070, - [SMALL_STATE(900)] = 23124, - [SMALL_STATE(901)] = 23178, - [SMALL_STATE(902)] = 23232, - [SMALL_STATE(903)] = 23286, - [SMALL_STATE(904)] = 23340, - [SMALL_STATE(905)] = 23394, - [SMALL_STATE(906)] = 23448, - [SMALL_STATE(907)] = 23502, - [SMALL_STATE(908)] = 23558, - [SMALL_STATE(909)] = 23612, - [SMALL_STATE(910)] = 23666, - [SMALL_STATE(911)] = 23720, - [SMALL_STATE(912)] = 23774, - [SMALL_STATE(913)] = 23828, - [SMALL_STATE(914)] = 23882, - [SMALL_STATE(915)] = 23936, - [SMALL_STATE(916)] = 23990, - [SMALL_STATE(917)] = 24044, - [SMALL_STATE(918)] = 24098, - [SMALL_STATE(919)] = 24152, - [SMALL_STATE(920)] = 24206, - [SMALL_STATE(921)] = 24260, - [SMALL_STATE(922)] = 24314, - [SMALL_STATE(923)] = 24368, - [SMALL_STATE(924)] = 24422, - [SMALL_STATE(925)] = 24476, - [SMALL_STATE(926)] = 24530, - [SMALL_STATE(927)] = 24584, - [SMALL_STATE(928)] = 24638, - [SMALL_STATE(929)] = 24692, - [SMALL_STATE(930)] = 24746, - [SMALL_STATE(931)] = 24800, - [SMALL_STATE(932)] = 24854, - [SMALL_STATE(933)] = 24908, - [SMALL_STATE(934)] = 24962, - [SMALL_STATE(935)] = 25016, - [SMALL_STATE(936)] = 25070, - [SMALL_STATE(937)] = 25124, - [SMALL_STATE(938)] = 25178, - [SMALL_STATE(939)] = 25232, - [SMALL_STATE(940)] = 25286, - [SMALL_STATE(941)] = 25340, - [SMALL_STATE(942)] = 25394, - [SMALL_STATE(943)] = 25448, - [SMALL_STATE(944)] = 25502, - [SMALL_STATE(945)] = 25556, - [SMALL_STATE(946)] = 25610, - [SMALL_STATE(947)] = 25664, - [SMALL_STATE(948)] = 25718, - [SMALL_STATE(949)] = 25772, - [SMALL_STATE(950)] = 25826, - [SMALL_STATE(951)] = 25880, - [SMALL_STATE(952)] = 25934, - [SMALL_STATE(953)] = 25988, - [SMALL_STATE(954)] = 26042, - [SMALL_STATE(955)] = 26096, - [SMALL_STATE(956)] = 26150, - [SMALL_STATE(957)] = 26204, - [SMALL_STATE(958)] = 26258, - [SMALL_STATE(959)] = 26312, - [SMALL_STATE(960)] = 26366, - [SMALL_STATE(961)] = 26420, - [SMALL_STATE(962)] = 26474, - [SMALL_STATE(963)] = 26528, - [SMALL_STATE(964)] = 26582, - [SMALL_STATE(965)] = 26636, - [SMALL_STATE(966)] = 26690, - [SMALL_STATE(967)] = 26744, - [SMALL_STATE(968)] = 26798, - [SMALL_STATE(969)] = 26852, - [SMALL_STATE(970)] = 26906, - [SMALL_STATE(971)] = 26960, - [SMALL_STATE(972)] = 27014, - [SMALL_STATE(973)] = 27068, - [SMALL_STATE(974)] = 27122, - [SMALL_STATE(975)] = 27176, - [SMALL_STATE(976)] = 27230, - [SMALL_STATE(977)] = 27284, - [SMALL_STATE(978)] = 27338, - [SMALL_STATE(979)] = 27392, - [SMALL_STATE(980)] = 27446, - [SMALL_STATE(981)] = 27500, - [SMALL_STATE(982)] = 27554, - [SMALL_STATE(983)] = 27608, - [SMALL_STATE(984)] = 27662, - [SMALL_STATE(985)] = 27716, - [SMALL_STATE(986)] = 27770, - [SMALL_STATE(987)] = 27824, - [SMALL_STATE(988)] = 27880, - [SMALL_STATE(989)] = 27934, - [SMALL_STATE(990)] = 27988, - [SMALL_STATE(991)] = 28044, - [SMALL_STATE(992)] = 28098, - [SMALL_STATE(993)] = 28152, - [SMALL_STATE(994)] = 28206, - [SMALL_STATE(995)] = 28260, - [SMALL_STATE(996)] = 28314, - [SMALL_STATE(997)] = 28368, - [SMALL_STATE(998)] = 28422, - [SMALL_STATE(999)] = 28476, - [SMALL_STATE(1000)] = 28530, - [SMALL_STATE(1001)] = 28584, - [SMALL_STATE(1002)] = 28638, - [SMALL_STATE(1003)] = 28692, - [SMALL_STATE(1004)] = 28746, - [SMALL_STATE(1005)] = 28800, - [SMALL_STATE(1006)] = 28854, - [SMALL_STATE(1007)] = 28910, - [SMALL_STATE(1008)] = 28964, - [SMALL_STATE(1009)] = 29018, - [SMALL_STATE(1010)] = 29072, - [SMALL_STATE(1011)] = 29126, - [SMALL_STATE(1012)] = 29180, - [SMALL_STATE(1013)] = 29234, - [SMALL_STATE(1014)] = 29288, - [SMALL_STATE(1015)] = 29342, - [SMALL_STATE(1016)] = 29396, - [SMALL_STATE(1017)] = 29450, - [SMALL_STATE(1018)] = 29504, - [SMALL_STATE(1019)] = 29558, - [SMALL_STATE(1020)] = 29612, - [SMALL_STATE(1021)] = 29666, - [SMALL_STATE(1022)] = 29720, - [SMALL_STATE(1023)] = 29774, - [SMALL_STATE(1024)] = 29828, - [SMALL_STATE(1025)] = 29882, - [SMALL_STATE(1026)] = 29936, - [SMALL_STATE(1027)] = 29989, - [SMALL_STATE(1028)] = 30042, - [SMALL_STATE(1029)] = 30097, - [SMALL_STATE(1030)] = 30150, - [SMALL_STATE(1031)] = 30205, - [SMALL_STATE(1032)] = 30258, - [SMALL_STATE(1033)] = 30311, - [SMALL_STATE(1034)] = 30364, - [SMALL_STATE(1035)] = 30417, - [SMALL_STATE(1036)] = 30470, - [SMALL_STATE(1037)] = 30523, - [SMALL_STATE(1038)] = 30576, - [SMALL_STATE(1039)] = 30629, - [SMALL_STATE(1040)] = 30682, - [SMALL_STATE(1041)] = 30735, - [SMALL_STATE(1042)] = 30788, - [SMALL_STATE(1043)] = 30843, - [SMALL_STATE(1044)] = 30896, - [SMALL_STATE(1045)] = 30949, - [SMALL_STATE(1046)] = 31002, - [SMALL_STATE(1047)] = 31055, - [SMALL_STATE(1048)] = 31108, - [SMALL_STATE(1049)] = 31161, - [SMALL_STATE(1050)] = 31214, - [SMALL_STATE(1051)] = 31267, - [SMALL_STATE(1052)] = 31320, - [SMALL_STATE(1053)] = 31373, - [SMALL_STATE(1054)] = 31426, - [SMALL_STATE(1055)] = 31479, - [SMALL_STATE(1056)] = 31532, - [SMALL_STATE(1057)] = 31585, - [SMALL_STATE(1058)] = 31638, - [SMALL_STATE(1059)] = 31695, - [SMALL_STATE(1060)] = 31748, - [SMALL_STATE(1061)] = 31801, - [SMALL_STATE(1062)] = 31854, - [SMALL_STATE(1063)] = 31907, - [SMALL_STATE(1064)] = 31960, - [SMALL_STATE(1065)] = 32013, - [SMALL_STATE(1066)] = 32066, - [SMALL_STATE(1067)] = 32119, - [SMALL_STATE(1068)] = 32172, - [SMALL_STATE(1069)] = 32225, - [SMALL_STATE(1070)] = 32278, - [SMALL_STATE(1071)] = 32331, - [SMALL_STATE(1072)] = 32384, - [SMALL_STATE(1073)] = 32437, - [SMALL_STATE(1074)] = 32490, - [SMALL_STATE(1075)] = 32543, - [SMALL_STATE(1076)] = 32596, - [SMALL_STATE(1077)] = 32649, - [SMALL_STATE(1078)] = 32738, - [SMALL_STATE(1079)] = 32791, - [SMALL_STATE(1080)] = 32844, - [SMALL_STATE(1081)] = 32897, - [SMALL_STATE(1082)] = 32950, - [SMALL_STATE(1083)] = 33003, - [SMALL_STATE(1084)] = 33056, - [SMALL_STATE(1085)] = 33109, - [SMALL_STATE(1086)] = 33162, - [SMALL_STATE(1087)] = 33215, - [SMALL_STATE(1088)] = 33268, - [SMALL_STATE(1089)] = 33321, - [SMALL_STATE(1090)] = 33374, - [SMALL_STATE(1091)] = 33429, - [SMALL_STATE(1092)] = 33482, - [SMALL_STATE(1093)] = 33535, - [SMALL_STATE(1094)] = 33588, - [SMALL_STATE(1095)] = 33641, - [SMALL_STATE(1096)] = 33730, - [SMALL_STATE(1097)] = 33783, - [SMALL_STATE(1098)] = 33836, - [SMALL_STATE(1099)] = 33889, - [SMALL_STATE(1100)] = 33942, - [SMALL_STATE(1101)] = 33995, - [SMALL_STATE(1102)] = 34048, - [SMALL_STATE(1103)] = 34101, - [SMALL_STATE(1104)] = 34154, - [SMALL_STATE(1105)] = 34207, - [SMALL_STATE(1106)] = 34260, - [SMALL_STATE(1107)] = 34313, - [SMALL_STATE(1108)] = 34366, - [SMALL_STATE(1109)] = 34419, - [SMALL_STATE(1110)] = 34472, - [SMALL_STATE(1111)] = 34525, - [SMALL_STATE(1112)] = 34578, - [SMALL_STATE(1113)] = 34631, - [SMALL_STATE(1114)] = 34684, - [SMALL_STATE(1115)] = 34737, - [SMALL_STATE(1116)] = 34790, - [SMALL_STATE(1117)] = 34843, - [SMALL_STATE(1118)] = 34896, - [SMALL_STATE(1119)] = 34949, - [SMALL_STATE(1120)] = 35002, - [SMALL_STATE(1121)] = 35055, - [SMALL_STATE(1122)] = 35108, - [SMALL_STATE(1123)] = 35161, - [SMALL_STATE(1124)] = 35214, - [SMALL_STATE(1125)] = 35267, - [SMALL_STATE(1126)] = 35320, - [SMALL_STATE(1127)] = 35400, - [SMALL_STATE(1128)] = 35460, - [SMALL_STATE(1129)] = 35512, - [SMALL_STATE(1130)] = 35598, - [SMALL_STATE(1131)] = 35658, - [SMALL_STATE(1132)] = 35718, - [SMALL_STATE(1133)] = 35798, - [SMALL_STATE(1134)] = 35860, - [SMALL_STATE(1135)] = 35940, - [SMALL_STATE(1136)] = 36000, - [SMALL_STATE(1137)] = 36080, - [SMALL_STATE(1138)] = 36160, - [SMALL_STATE(1139)] = 36232, - [SMALL_STATE(1140)] = 36318, - [SMALL_STATE(1141)] = 36370, - [SMALL_STATE(1142)] = 36436, - [SMALL_STATE(1143)] = 36512, - [SMALL_STATE(1144)] = 36590, - [SMALL_STATE(1145)] = 36660, - [SMALL_STATE(1146)] = 36720, - [SMALL_STATE(1147)] = 36788, - [SMALL_STATE(1148)] = 36852, - [SMALL_STATE(1149)] = 36932, - [SMALL_STATE(1150)] = 37017, - [SMALL_STATE(1151)] = 37104, - [SMALL_STATE(1152)] = 37191, - [SMALL_STATE(1153)] = 37270, - [SMALL_STATE(1154)] = 37321, - [SMALL_STATE(1155)] = 37378, - [SMALL_STATE(1156)] = 37465, - [SMALL_STATE(1157)] = 37550, - [SMALL_STATE(1158)] = 37637, - [SMALL_STATE(1159)] = 37688, - [SMALL_STATE(1160)] = 37744, - [SMALL_STATE(1161)] = 37820, - [SMALL_STATE(1162)] = 37896, - [SMALL_STATE(1163)] = 37972, - [SMALL_STATE(1164)] = 38026, - [SMALL_STATE(1165)] = 38102, - [SMALL_STATE(1166)] = 38151, - [SMALL_STATE(1167)] = 38240, - [SMALL_STATE(1168)] = 38289, - [SMALL_STATE(1169)] = 38338, - [SMALL_STATE(1170)] = 38387, - [SMALL_STATE(1171)] = 38476, - [SMALL_STATE(1172)] = 38525, - [SMALL_STATE(1173)] = 38576, - [SMALL_STATE(1174)] = 38627, - [SMALL_STATE(1175)] = 38676, - [SMALL_STATE(1176)] = 38725, - [SMALL_STATE(1177)] = 38778, - [SMALL_STATE(1178)] = 38827, - [SMALL_STATE(1179)] = 38880, - [SMALL_STATE(1180)] = 38953, - [SMALL_STATE(1181)] = 39002, - [SMALL_STATE(1182)] = 39052, - [SMALL_STATE(1183)] = 39130, - [SMALL_STATE(1184)] = 39180, - [SMALL_STATE(1185)] = 39230, - [SMALL_STATE(1186)] = 39316, - [SMALL_STATE(1187)] = 39402, - [SMALL_STATE(1188)] = 39452, - [SMALL_STATE(1189)] = 39530, - [SMALL_STATE(1190)] = 39605, - [SMALL_STATE(1191)] = 39688, - [SMALL_STATE(1192)] = 39771, - [SMALL_STATE(1193)] = 39852, - [SMALL_STATE(1194)] = 39935, - [SMALL_STATE(1195)] = 40018, - [SMALL_STATE(1196)] = 40093, - [SMALL_STATE(1197)] = 40176, - [SMALL_STATE(1198)] = 40259, - [SMALL_STATE(1199)] = 40342, - [SMALL_STATE(1200)] = 40425, - [SMALL_STATE(1201)] = 40508, - [SMALL_STATE(1202)] = 40591, - [SMALL_STATE(1203)] = 40674, - [SMALL_STATE(1204)] = 40757, - [SMALL_STATE(1205)] = 40840, - [SMALL_STATE(1206)] = 40923, - [SMALL_STATE(1207)] = 41006, - [SMALL_STATE(1208)] = 41061, - [SMALL_STATE(1209)] = 41142, - [SMALL_STATE(1210)] = 41223, - [SMALL_STATE(1211)] = 41298, - [SMALL_STATE(1212)] = 41381, - [SMALL_STATE(1213)] = 41464, - [SMALL_STATE(1214)] = 41547, - [SMALL_STATE(1215)] = 41630, - [SMALL_STATE(1216)] = 41713, - [SMALL_STATE(1217)] = 41796, - [SMALL_STATE(1218)] = 41879, - [SMALL_STATE(1219)] = 41934, - [SMALL_STATE(1220)] = 42017, - [SMALL_STATE(1221)] = 42092, - [SMALL_STATE(1222)] = 42175, - [SMALL_STATE(1223)] = 42258, - [SMALL_STATE(1224)] = 42313, - [SMALL_STATE(1225)] = 42368, - [SMALL_STATE(1226)] = 42451, - [SMALL_STATE(1227)] = 42534, - [SMALL_STATE(1228)] = 42615, - [SMALL_STATE(1229)] = 42690, - [SMALL_STATE(1230)] = 42749, - [SMALL_STATE(1231)] = 42832, - [SMALL_STATE(1232)] = 42895, - [SMALL_STATE(1233)] = 42978, - [SMALL_STATE(1234)] = 43061, - [SMALL_STATE(1235)] = 43142, - [SMALL_STATE(1236)] = 43223, - [SMALL_STATE(1237)] = 43306, - [SMALL_STATE(1238)] = 43389, - [SMALL_STATE(1239)] = 43472, - [SMALL_STATE(1240)] = 43537, - [SMALL_STATE(1241)] = 43610, - [SMALL_STATE(1242)] = 43681, - [SMALL_STATE(1243)] = 43762, - [SMALL_STATE(1244)] = 43823, - [SMALL_STATE(1245)] = 43906, - [SMALL_STATE(1246)] = 43989, - [SMALL_STATE(1247)] = 44070, - [SMALL_STATE(1248)] = 44137, - [SMALL_STATE(1249)] = 44220, - [SMALL_STATE(1250)] = 44295, - [SMALL_STATE(1251)] = 44378, - [SMALL_STATE(1252)] = 44435, - [SMALL_STATE(1253)] = 44518, - [SMALL_STATE(1254)] = 44599, - [SMALL_STATE(1255)] = 44682, - [SMALL_STATE(1256)] = 44765, - [SMALL_STATE(1257)] = 44848, - [SMALL_STATE(1258)] = 44931, - [SMALL_STATE(1259)] = 45014, - [SMALL_STATE(1260)] = 45097, - [SMALL_STATE(1261)] = 45178, - [SMALL_STATE(1262)] = 45261, - [SMALL_STATE(1263)] = 45342, - [SMALL_STATE(1264)] = 45423, - [SMALL_STATE(1265)] = 45494, - [SMALL_STATE(1266)] = 45574, - [SMALL_STATE(1267)] = 45654, - [SMALL_STATE(1268)] = 45734, - [SMALL_STATE(1269)] = 45814, - [SMALL_STATE(1270)] = 45894, - [SMALL_STATE(1271)] = 45974, - [SMALL_STATE(1272)] = 46054, - [SMALL_STATE(1273)] = 46134, - [SMALL_STATE(1274)] = 46214, - [SMALL_STATE(1275)] = 46282, - [SMALL_STATE(1276)] = 46362, - [SMALL_STATE(1277)] = 46442, - [SMALL_STATE(1278)] = 46522, - [SMALL_STATE(1279)] = 46602, - [SMALL_STATE(1280)] = 46682, - [SMALL_STATE(1281)] = 46762, - [SMALL_STATE(1282)] = 46842, - [SMALL_STATE(1283)] = 46922, - [SMALL_STATE(1284)] = 47002, - [SMALL_STATE(1285)] = 47082, - [SMALL_STATE(1286)] = 47162, - [SMALL_STATE(1287)] = 47242, - [SMALL_STATE(1288)] = 47322, - [SMALL_STATE(1289)] = 47402, - [SMALL_STATE(1290)] = 47482, - [SMALL_STATE(1291)] = 47562, - [SMALL_STATE(1292)] = 47642, - [SMALL_STATE(1293)] = 47722, - [SMALL_STATE(1294)] = 47802, - [SMALL_STATE(1295)] = 47882, - [SMALL_STATE(1296)] = 47962, - [SMALL_STATE(1297)] = 48030, - [SMALL_STATE(1298)] = 48110, - [SMALL_STATE(1299)] = 48175, - [SMALL_STATE(1300)] = 48240, - [SMALL_STATE(1301)] = 48305, - [SMALL_STATE(1302)] = 48370, - [SMALL_STATE(1303)] = 48435, - [SMALL_STATE(1304)] = 48475, - [SMALL_STATE(1305)] = 48515, - [SMALL_STATE(1306)] = 48555, - [SMALL_STATE(1307)] = 48610, - [SMALL_STATE(1308)] = 48665, - [SMALL_STATE(1309)] = 48720, - [SMALL_STATE(1310)] = 48775, - [SMALL_STATE(1311)] = 48830, - [SMALL_STATE(1312)] = 48885, - [SMALL_STATE(1313)] = 48940, - [SMALL_STATE(1314)] = 48992, - [SMALL_STATE(1315)] = 49044, - [SMALL_STATE(1316)] = 49074, - [SMALL_STATE(1317)] = 49104, - [SMALL_STATE(1318)] = 49146, - [SMALL_STATE(1319)] = 49186, - [SMALL_STATE(1320)] = 49215, - [SMALL_STATE(1321)] = 49244, - [SMALL_STATE(1322)] = 49281, - [SMALL_STATE(1323)] = 49318, - [SMALL_STATE(1324)] = 49347, - [SMALL_STATE(1325)] = 49376, - [SMALL_STATE(1326)] = 49405, - [SMALL_STATE(1327)] = 49434, - [SMALL_STATE(1328)] = 49463, - [SMALL_STATE(1329)] = 49492, - [SMALL_STATE(1330)] = 49546, - [SMALL_STATE(1331)] = 49578, - [SMALL_STATE(1332)] = 49632, - [SMALL_STATE(1333)] = 49664, - [SMALL_STATE(1334)] = 49696, - [SMALL_STATE(1335)] = 49721, - [SMALL_STATE(1336)] = 49744, - [SMALL_STATE(1337)] = 49768, - [SMALL_STATE(1338)] = 49792, - [SMALL_STATE(1339)] = 49816, - [SMALL_STATE(1340)] = 49840, - [SMALL_STATE(1341)] = 49864, - [SMALL_STATE(1342)] = 49910, - [SMALL_STATE(1343)] = 49932, - [SMALL_STATE(1344)] = 49956, - [SMALL_STATE(1345)] = 50000, - [SMALL_STATE(1346)] = 50044, - [SMALL_STATE(1347)] = 50068, - [SMALL_STATE(1348)] = 50092, - [SMALL_STATE(1349)] = 50122, - [SMALL_STATE(1350)] = 50144, - [SMALL_STATE(1351)] = 50168, - [SMALL_STATE(1352)] = 50190, - [SMALL_STATE(1353)] = 50214, - [SMALL_STATE(1354)] = 50236, - [SMALL_STATE(1355)] = 50261, - [SMALL_STATE(1356)] = 50282, - [SMALL_STATE(1357)] = 50305, - [SMALL_STATE(1358)] = 50330, - [SMALL_STATE(1359)] = 50351, - [SMALL_STATE(1360)] = 50376, - [SMALL_STATE(1361)] = 50399, - [SMALL_STATE(1362)] = 50444, - [SMALL_STATE(1363)] = 50465, - [SMALL_STATE(1364)] = 50486, - [SMALL_STATE(1365)] = 50509, - [SMALL_STATE(1366)] = 50532, - [SMALL_STATE(1367)] = 50559, - [SMALL_STATE(1368)] = 50582, - [SMALL_STATE(1369)] = 50603, - [SMALL_STATE(1370)] = 50628, - [SMALL_STATE(1371)] = 50653, - [SMALL_STATE(1372)] = 50676, - [SMALL_STATE(1373)] = 50699, - [SMALL_STATE(1374)] = 50724, - [SMALL_STATE(1375)] = 50747, - [SMALL_STATE(1376)] = 50769, - [SMALL_STATE(1377)] = 50789, - [SMALL_STATE(1378)] = 50809, - [SMALL_STATE(1379)] = 50829, - [SMALL_STATE(1380)] = 50849, - [SMALL_STATE(1381)] = 50869, - [SMALL_STATE(1382)] = 50889, - [SMALL_STATE(1383)] = 50909, - [SMALL_STATE(1384)] = 50929, - [SMALL_STATE(1385)] = 50951, - [SMALL_STATE(1386)] = 50971, - [SMALL_STATE(1387)] = 50991, - [SMALL_STATE(1388)] = 51011, - [SMALL_STATE(1389)] = 51031, - [SMALL_STATE(1390)] = 51051, - [SMALL_STATE(1391)] = 51071, - [SMALL_STATE(1392)] = 51091, - [SMALL_STATE(1393)] = 51111, - [SMALL_STATE(1394)] = 51131, - [SMALL_STATE(1395)] = 51151, - [SMALL_STATE(1396)] = 51175, - [SMALL_STATE(1397)] = 51195, - [SMALL_STATE(1398)] = 51215, - [SMALL_STATE(1399)] = 51235, - [SMALL_STATE(1400)] = 51255, - [SMALL_STATE(1401)] = 51275, - [SMALL_STATE(1402)] = 51295, - [SMALL_STATE(1403)] = 51315, - [SMALL_STATE(1404)] = 51335, - [SMALL_STATE(1405)] = 51355, - [SMALL_STATE(1406)] = 51377, - [SMALL_STATE(1407)] = 51402, - [SMALL_STATE(1408)] = 51425, - [SMALL_STATE(1409)] = 51460, - [SMALL_STATE(1410)] = 51483, - [SMALL_STATE(1411)] = 51504, - [SMALL_STATE(1412)] = 51527, - [SMALL_STATE(1413)] = 51550, - [SMALL_STATE(1414)] = 51573, - [SMALL_STATE(1415)] = 51596, - [SMALL_STATE(1416)] = 51619, - [SMALL_STATE(1417)] = 51642, - [SMALL_STATE(1418)] = 51667, - [SMALL_STATE(1419)] = 51690, - [SMALL_STATE(1420)] = 51713, - [SMALL_STATE(1421)] = 51736, - [SMALL_STATE(1422)] = 51761, - [SMALL_STATE(1423)] = 51784, - [SMALL_STATE(1424)] = 51809, - [SMALL_STATE(1425)] = 51830, - [SMALL_STATE(1426)] = 51851, - [SMALL_STATE(1427)] = 51876, - [SMALL_STATE(1428)] = 51901, - [SMALL_STATE(1429)] = 51926, - [SMALL_STATE(1430)] = 51951, - [SMALL_STATE(1431)] = 51971, - [SMALL_STATE(1432)] = 52003, - [SMALL_STATE(1433)] = 52023, - [SMALL_STATE(1434)] = 52047, - [SMALL_STATE(1435)] = 52071, - [SMALL_STATE(1436)] = 52091, - [SMALL_STATE(1437)] = 52111, - [SMALL_STATE(1438)] = 52131, - [SMALL_STATE(1439)] = 52151, - [SMALL_STATE(1440)] = 52175, - [SMALL_STATE(1441)] = 52195, - [SMALL_STATE(1442)] = 52215, - [SMALL_STATE(1443)] = 52247, - [SMALL_STATE(1444)] = 52279, - [SMALL_STATE(1445)] = 52299, - [SMALL_STATE(1446)] = 52325, - [SMALL_STATE(1447)] = 52345, - [SMALL_STATE(1448)] = 52365, - [SMALL_STATE(1449)] = 52397, - [SMALL_STATE(1450)] = 52417, - [SMALL_STATE(1451)] = 52437, - [SMALL_STATE(1452)] = 52457, - [SMALL_STATE(1453)] = 52477, - [SMALL_STATE(1454)] = 52509, - [SMALL_STATE(1455)] = 52529, - [SMALL_STATE(1456)] = 52549, - [SMALL_STATE(1457)] = 52569, - [SMALL_STATE(1458)] = 52589, - [SMALL_STATE(1459)] = 52609, - [SMALL_STATE(1460)] = 52641, - [SMALL_STATE(1461)] = 52673, - [SMALL_STATE(1462)] = 52705, - [SMALL_STATE(1463)] = 52725, - [SMALL_STATE(1464)] = 52745, - [SMALL_STATE(1465)] = 52765, - [SMALL_STATE(1466)] = 52785, - [SMALL_STATE(1467)] = 52805, - [SMALL_STATE(1468)] = 52825, - [SMALL_STATE(1469)] = 52851, - [SMALL_STATE(1470)] = 52871, - [SMALL_STATE(1471)] = 52891, - [SMALL_STATE(1472)] = 52911, - [SMALL_STATE(1473)] = 52931, - [SMALL_STATE(1474)] = 52955, - [SMALL_STATE(1475)] = 52975, - [SMALL_STATE(1476)] = 52998, - [SMALL_STATE(1477)] = 53021, - [SMALL_STATE(1478)] = 53054, - [SMALL_STATE(1479)] = 53079, - [SMALL_STATE(1480)] = 53112, - [SMALL_STATE(1481)] = 53137, - [SMALL_STATE(1482)] = 53166, - [SMALL_STATE(1483)] = 53191, - [SMALL_STATE(1484)] = 53222, - [SMALL_STATE(1485)] = 53245, - [SMALL_STATE(1486)] = 53272, - [SMALL_STATE(1487)] = 53305, - [SMALL_STATE(1488)] = 53338, - [SMALL_STATE(1489)] = 53368, - [SMALL_STATE(1490)] = 53398, - [SMALL_STATE(1491)] = 53424, - [SMALL_STATE(1492)] = 53446, - [SMALL_STATE(1493)] = 53472, - [SMALL_STATE(1494)] = 53504, - [SMALL_STATE(1495)] = 53534, - [SMALL_STATE(1496)] = 53564, - [SMALL_STATE(1497)] = 53594, - [SMALL_STATE(1498)] = 53624, - [SMALL_STATE(1499)] = 53650, - [SMALL_STATE(1500)] = 53672, - [SMALL_STATE(1501)] = 53698, - [SMALL_STATE(1502)] = 53730, - [SMALL_STATE(1503)] = 53760, - [SMALL_STATE(1504)] = 53782, - [SMALL_STATE(1505)] = 53804, - [SMALL_STATE(1506)] = 53834, - [SMALL_STATE(1507)] = 53864, - [SMALL_STATE(1508)] = 53894, - [SMALL_STATE(1509)] = 53924, - [SMALL_STATE(1510)] = 53954, - [SMALL_STATE(1511)] = 53984, - [SMALL_STATE(1512)] = 54014, - [SMALL_STATE(1513)] = 54044, - [SMALL_STATE(1514)] = 54076, - [SMALL_STATE(1515)] = 54098, - [SMALL_STATE(1516)] = 54124, - [SMALL_STATE(1517)] = 54150, - [SMALL_STATE(1518)] = 54180, - [SMALL_STATE(1519)] = 54206, - [SMALL_STATE(1520)] = 54232, - [SMALL_STATE(1521)] = 54262, - [SMALL_STATE(1522)] = 54292, - [SMALL_STATE(1523)] = 54318, - [SMALL_STATE(1524)] = 54344, - [SMALL_STATE(1525)] = 54374, - [SMALL_STATE(1526)] = 54400, - [SMALL_STATE(1527)] = 54422, - [SMALL_STATE(1528)] = 54452, - [SMALL_STATE(1529)] = 54482, - [SMALL_STATE(1530)] = 54514, - [SMALL_STATE(1531)] = 54533, - [SMALL_STATE(1532)] = 54560, - [SMALL_STATE(1533)] = 54579, - [SMALL_STATE(1534)] = 54608, - [SMALL_STATE(1535)] = 54631, - [SMALL_STATE(1536)] = 54658, - [SMALL_STATE(1537)] = 54677, - [SMALL_STATE(1538)] = 54696, - [SMALL_STATE(1539)] = 54723, - [SMALL_STATE(1540)] = 54746, - [SMALL_STATE(1541)] = 54773, - [SMALL_STATE(1542)] = 54800, - [SMALL_STATE(1543)] = 54829, - [SMALL_STATE(1544)] = 54858, - [SMALL_STATE(1545)] = 54885, - [SMALL_STATE(1546)] = 54904, - [SMALL_STATE(1547)] = 54931, - [SMALL_STATE(1548)] = 54958, - [SMALL_STATE(1549)] = 54985, - [SMALL_STATE(1550)] = 55006, - [SMALL_STATE(1551)] = 55025, - [SMALL_STATE(1552)] = 55052, - [SMALL_STATE(1553)] = 55073, - [SMALL_STATE(1554)] = 55100, - [SMALL_STATE(1555)] = 55119, - [SMALL_STATE(1556)] = 55138, - [SMALL_STATE(1557)] = 55167, - [SMALL_STATE(1558)] = 55190, - [SMALL_STATE(1559)] = 55217, - [SMALL_STATE(1560)] = 55244, - [SMALL_STATE(1561)] = 55267, - [SMALL_STATE(1562)] = 55282, - [SMALL_STATE(1563)] = 55311, - [SMALL_STATE(1564)] = 55338, - [SMALL_STATE(1565)] = 55361, - [SMALL_STATE(1566)] = 55380, - [SMALL_STATE(1567)] = 55399, - [SMALL_STATE(1568)] = 55426, - [SMALL_STATE(1569)] = 55455, - [SMALL_STATE(1570)] = 55474, - [SMALL_STATE(1571)] = 55499, - [SMALL_STATE(1572)] = 55513, - [SMALL_STATE(1573)] = 55527, - [SMALL_STATE(1574)] = 55541, - [SMALL_STATE(1575)] = 55567, - [SMALL_STATE(1576)] = 55581, - [SMALL_STATE(1577)] = 55595, - [SMALL_STATE(1578)] = 55617, - [SMALL_STATE(1579)] = 55643, - [SMALL_STATE(1580)] = 55667, - [SMALL_STATE(1581)] = 55693, - [SMALL_STATE(1582)] = 55715, - [SMALL_STATE(1583)] = 55729, - [SMALL_STATE(1584)] = 55751, - [SMALL_STATE(1585)] = 55773, - [SMALL_STATE(1586)] = 55795, - [SMALL_STATE(1587)] = 55811, - [SMALL_STATE(1588)] = 55827, - [SMALL_STATE(1589)] = 55853, - [SMALL_STATE(1590)] = 55879, - [SMALL_STATE(1591)] = 55903, - [SMALL_STATE(1592)] = 55927, - [SMALL_STATE(1593)] = 55943, - [SMALL_STATE(1594)] = 55959, - [SMALL_STATE(1595)] = 55985, - [SMALL_STATE(1596)] = 56001, - [SMALL_STATE(1597)] = 56025, - [SMALL_STATE(1598)] = 56049, - [SMALL_STATE(1599)] = 56075, - [SMALL_STATE(1600)] = 56101, - [SMALL_STATE(1601)] = 56127, - [SMALL_STATE(1602)] = 56149, - [SMALL_STATE(1603)] = 56175, - [SMALL_STATE(1604)] = 56189, - [SMALL_STATE(1605)] = 56215, - [SMALL_STATE(1606)] = 56241, - [SMALL_STATE(1607)] = 56257, - [SMALL_STATE(1608)] = 56283, - [SMALL_STATE(1609)] = 56309, - [SMALL_STATE(1610)] = 56335, - [SMALL_STATE(1611)] = 56361, - [SMALL_STATE(1612)] = 56377, - [SMALL_STATE(1613)] = 56403, - [SMALL_STATE(1614)] = 56429, - [SMALL_STATE(1615)] = 56455, - [SMALL_STATE(1616)] = 56471, - [SMALL_STATE(1617)] = 56497, - [SMALL_STATE(1618)] = 56520, - [SMALL_STATE(1619)] = 56543, - [SMALL_STATE(1620)] = 56566, - [SMALL_STATE(1621)] = 56583, - [SMALL_STATE(1622)] = 56606, - [SMALL_STATE(1623)] = 56629, - [SMALL_STATE(1624)] = 56646, - [SMALL_STATE(1625)] = 56669, - [SMALL_STATE(1626)] = 56692, - [SMALL_STATE(1627)] = 56715, - [SMALL_STATE(1628)] = 56738, - [SMALL_STATE(1629)] = 56755, - [SMALL_STATE(1630)] = 56778, - [SMALL_STATE(1631)] = 56795, - [SMALL_STATE(1632)] = 56818, - [SMALL_STATE(1633)] = 56841, - [SMALL_STATE(1634)] = 56864, - [SMALL_STATE(1635)] = 56887, - [SMALL_STATE(1636)] = 56904, - [SMALL_STATE(1637)] = 56927, - [SMALL_STATE(1638)] = 56950, - [SMALL_STATE(1639)] = 56973, - [SMALL_STATE(1640)] = 56996, - [SMALL_STATE(1641)] = 57019, - [SMALL_STATE(1642)] = 57042, - [SMALL_STATE(1643)] = 57059, - [SMALL_STATE(1644)] = 57082, - [SMALL_STATE(1645)] = 57105, - [SMALL_STATE(1646)] = 57128, - [SMALL_STATE(1647)] = 57151, - [SMALL_STATE(1648)] = 57168, - [SMALL_STATE(1649)] = 57191, - [SMALL_STATE(1650)] = 57214, - [SMALL_STATE(1651)] = 57237, - [SMALL_STATE(1652)] = 57254, - [SMALL_STATE(1653)] = 57277, - [SMALL_STATE(1654)] = 57298, - [SMALL_STATE(1655)] = 57321, - [SMALL_STATE(1656)] = 57344, - [SMALL_STATE(1657)] = 57367, - [SMALL_STATE(1658)] = 57390, - [SMALL_STATE(1659)] = 57413, - [SMALL_STATE(1660)] = 57436, - [SMALL_STATE(1661)] = 57451, - [SMALL_STATE(1662)] = 57474, - [SMALL_STATE(1663)] = 57497, - [SMALL_STATE(1664)] = 57516, - [SMALL_STATE(1665)] = 57539, - [SMALL_STATE(1666)] = 57556, - [SMALL_STATE(1667)] = 57579, - [SMALL_STATE(1668)] = 57596, - [SMALL_STATE(1669)] = 57615, - [SMALL_STATE(1670)] = 57638, - [SMALL_STATE(1671)] = 57661, - [SMALL_STATE(1672)] = 57684, - [SMALL_STATE(1673)] = 57707, - [SMALL_STATE(1674)] = 57730, - [SMALL_STATE(1675)] = 57753, - [SMALL_STATE(1676)] = 57774, - [SMALL_STATE(1677)] = 57797, - [SMALL_STATE(1678)] = 57820, - [SMALL_STATE(1679)] = 57843, - [SMALL_STATE(1680)] = 57866, - [SMALL_STATE(1681)] = 57889, - [SMALL_STATE(1682)] = 57912, - [SMALL_STATE(1683)] = 57935, - [SMALL_STATE(1684)] = 57958, - [SMALL_STATE(1685)] = 57975, - [SMALL_STATE(1686)] = 57998, - [SMALL_STATE(1687)] = 58021, - [SMALL_STATE(1688)] = 58038, - [SMALL_STATE(1689)] = 58055, - [SMALL_STATE(1690)] = 58078, - [SMALL_STATE(1691)] = 58101, - [SMALL_STATE(1692)] = 58124, - [SMALL_STATE(1693)] = 58147, - [SMALL_STATE(1694)] = 58170, - [SMALL_STATE(1695)] = 58193, - [SMALL_STATE(1696)] = 58216, - [SMALL_STATE(1697)] = 58239, - [SMALL_STATE(1698)] = 58254, - [SMALL_STATE(1699)] = 58277, - [SMALL_STATE(1700)] = 58300, - [SMALL_STATE(1701)] = 58323, - [SMALL_STATE(1702)] = 58346, - [SMALL_STATE(1703)] = 58369, - [SMALL_STATE(1704)] = 58392, - [SMALL_STATE(1705)] = 58415, - [SMALL_STATE(1706)] = 58432, - [SMALL_STATE(1707)] = 58455, - [SMALL_STATE(1708)] = 58474, - [SMALL_STATE(1709)] = 58491, - [SMALL_STATE(1710)] = 58503, - [SMALL_STATE(1711)] = 58523, - [SMALL_STATE(1712)] = 58539, - [SMALL_STATE(1713)] = 58555, - [SMALL_STATE(1714)] = 58573, - [SMALL_STATE(1715)] = 58591, - [SMALL_STATE(1716)] = 58607, - [SMALL_STATE(1717)] = 58619, - [SMALL_STATE(1718)] = 58635, - [SMALL_STATE(1719)] = 58647, - [SMALL_STATE(1720)] = 58659, - [SMALL_STATE(1721)] = 58671, - [SMALL_STATE(1722)] = 58687, - [SMALL_STATE(1723)] = 58707, - [SMALL_STATE(1724)] = 58719, - [SMALL_STATE(1725)] = 58739, - [SMALL_STATE(1726)] = 58751, - [SMALL_STATE(1727)] = 58767, - [SMALL_STATE(1728)] = 58779, - [SMALL_STATE(1729)] = 58797, - [SMALL_STATE(1730)] = 58815, - [SMALL_STATE(1731)] = 58833, - [SMALL_STATE(1732)] = 58847, - [SMALL_STATE(1733)] = 58863, - [SMALL_STATE(1734)] = 58879, - [SMALL_STATE(1735)] = 58897, - [SMALL_STATE(1736)] = 58917, - [SMALL_STATE(1737)] = 58929, - [SMALL_STATE(1738)] = 58941, - [SMALL_STATE(1739)] = 58957, - [SMALL_STATE(1740)] = 58969, - [SMALL_STATE(1741)] = 58981, - [SMALL_STATE(1742)] = 58993, - [SMALL_STATE(1743)] = 59005, - [SMALL_STATE(1744)] = 59017, - [SMALL_STATE(1745)] = 59029, - [SMALL_STATE(1746)] = 59041, - [SMALL_STATE(1747)] = 59057, - [SMALL_STATE(1748)] = 59075, - [SMALL_STATE(1749)] = 59095, - [SMALL_STATE(1750)] = 59109, - [SMALL_STATE(1751)] = 59125, - [SMALL_STATE(1752)] = 59137, - [SMALL_STATE(1753)] = 59149, - [SMALL_STATE(1754)] = 59167, - [SMALL_STATE(1755)] = 59183, - [SMALL_STATE(1756)] = 59203, - [SMALL_STATE(1757)] = 59215, - [SMALL_STATE(1758)] = 59227, - [SMALL_STATE(1759)] = 59243, - [SMALL_STATE(1760)] = 59260, - [SMALL_STATE(1761)] = 59277, - [SMALL_STATE(1762)] = 59292, - [SMALL_STATE(1763)] = 59307, - [SMALL_STATE(1764)] = 59322, - [SMALL_STATE(1765)] = 59337, - [SMALL_STATE(1766)] = 59352, - [SMALL_STATE(1767)] = 59369, - [SMALL_STATE(1768)] = 59386, - [SMALL_STATE(1769)] = 59403, - [SMALL_STATE(1770)] = 59420, - [SMALL_STATE(1771)] = 59433, - [SMALL_STATE(1772)] = 59448, - [SMALL_STATE(1773)] = 59463, - [SMALL_STATE(1774)] = 59480, - [SMALL_STATE(1775)] = 59497, - [SMALL_STATE(1776)] = 59514, - [SMALL_STATE(1777)] = 59527, - [SMALL_STATE(1778)] = 59540, - [SMALL_STATE(1779)] = 59557, - [SMALL_STATE(1780)] = 59574, - [SMALL_STATE(1781)] = 59589, - [SMALL_STATE(1782)] = 59604, - [SMALL_STATE(1783)] = 59619, - [SMALL_STATE(1784)] = 59636, - [SMALL_STATE(1785)] = 59651, - [SMALL_STATE(1786)] = 59668, - [SMALL_STATE(1787)] = 59685, - [SMALL_STATE(1788)] = 59702, - [SMALL_STATE(1789)] = 59719, - [SMALL_STATE(1790)] = 59736, - [SMALL_STATE(1791)] = 59753, - [SMALL_STATE(1792)] = 59768, - [SMALL_STATE(1793)] = 59785, - [SMALL_STATE(1794)] = 59802, - [SMALL_STATE(1795)] = 59817, - [SMALL_STATE(1796)] = 59830, - [SMALL_STATE(1797)] = 59845, - [SMALL_STATE(1798)] = 59862, - [SMALL_STATE(1799)] = 59879, - [SMALL_STATE(1800)] = 59896, - [SMALL_STATE(1801)] = 59913, - [SMALL_STATE(1802)] = 59928, - [SMALL_STATE(1803)] = 59945, - [SMALL_STATE(1804)] = 59962, - [SMALL_STATE(1805)] = 59979, - [SMALL_STATE(1806)] = 59996, - [SMALL_STATE(1807)] = 60013, - [SMALL_STATE(1808)] = 60030, - [SMALL_STATE(1809)] = 60047, - [SMALL_STATE(1810)] = 60060, - [SMALL_STATE(1811)] = 60077, - [SMALL_STATE(1812)] = 60090, - [SMALL_STATE(1813)] = 60107, - [SMALL_STATE(1814)] = 60124, - [SMALL_STATE(1815)] = 60141, - [SMALL_STATE(1816)] = 60158, - [SMALL_STATE(1817)] = 60175, - [SMALL_STATE(1818)] = 60190, - [SMALL_STATE(1819)] = 60207, - [SMALL_STATE(1820)] = 60224, - [SMALL_STATE(1821)] = 60241, - [SMALL_STATE(1822)] = 60258, - [SMALL_STATE(1823)] = 60275, - [SMALL_STATE(1824)] = 60292, - [SMALL_STATE(1825)] = 60309, - [SMALL_STATE(1826)] = 60326, - [SMALL_STATE(1827)] = 60343, - [SMALL_STATE(1828)] = 60360, - [SMALL_STATE(1829)] = 60377, - [SMALL_STATE(1830)] = 60394, - [SMALL_STATE(1831)] = 60411, - [SMALL_STATE(1832)] = 60428, - [SMALL_STATE(1833)] = 60445, - [SMALL_STATE(1834)] = 60460, - [SMALL_STATE(1835)] = 60477, - [SMALL_STATE(1836)] = 60494, - [SMALL_STATE(1837)] = 60509, - [SMALL_STATE(1838)] = 60526, - [SMALL_STATE(1839)] = 60543, - [SMALL_STATE(1840)] = 60558, - [SMALL_STATE(1841)] = 60571, - [SMALL_STATE(1842)] = 60584, - [SMALL_STATE(1843)] = 60597, - [SMALL_STATE(1844)] = 60614, - [SMALL_STATE(1845)] = 60631, - [SMALL_STATE(1846)] = 60646, - [SMALL_STATE(1847)] = 60661, - [SMALL_STATE(1848)] = 60678, - [SMALL_STATE(1849)] = 60695, - [SMALL_STATE(1850)] = 60710, - [SMALL_STATE(1851)] = 60725, - [SMALL_STATE(1852)] = 60738, - [SMALL_STATE(1853)] = 60753, - [SMALL_STATE(1854)] = 60768, - [SMALL_STATE(1855)] = 60783, - [SMALL_STATE(1856)] = 60800, - [SMALL_STATE(1857)] = 60817, - [SMALL_STATE(1858)] = 60834, - [SMALL_STATE(1859)] = 60851, - [SMALL_STATE(1860)] = 60868, - [SMALL_STATE(1861)] = 60882, - [SMALL_STATE(1862)] = 60896, - [SMALL_STATE(1863)] = 60906, - [SMALL_STATE(1864)] = 60920, - [SMALL_STATE(1865)] = 60934, - [SMALL_STATE(1866)] = 60946, - [SMALL_STATE(1867)] = 60960, - [SMALL_STATE(1868)] = 60974, - [SMALL_STATE(1869)] = 60988, - [SMALL_STATE(1870)] = 61002, - [SMALL_STATE(1871)] = 61016, - [SMALL_STATE(1872)] = 61026, - [SMALL_STATE(1873)] = 61040, - [SMALL_STATE(1874)] = 61054, - [SMALL_STATE(1875)] = 61064, - [SMALL_STATE(1876)] = 61078, - [SMALL_STATE(1877)] = 61092, - [SMALL_STATE(1878)] = 61106, - [SMALL_STATE(1879)] = 61120, - [SMALL_STATE(1880)] = 61134, - [SMALL_STATE(1881)] = 61144, - [SMALL_STATE(1882)] = 61158, - [SMALL_STATE(1883)] = 61172, - [SMALL_STATE(1884)] = 61186, - [SMALL_STATE(1885)] = 61198, - [SMALL_STATE(1886)] = 61210, - [SMALL_STATE(1887)] = 61222, - [SMALL_STATE(1888)] = 61232, - [SMALL_STATE(1889)] = 61246, - [SMALL_STATE(1890)] = 61260, - [SMALL_STATE(1891)] = 61272, - [SMALL_STATE(1892)] = 61286, - [SMALL_STATE(1893)] = 61300, - [SMALL_STATE(1894)] = 61312, - [SMALL_STATE(1895)] = 61326, - [SMALL_STATE(1896)] = 61340, - [SMALL_STATE(1897)] = 61354, - [SMALL_STATE(1898)] = 61368, - [SMALL_STATE(1899)] = 61382, - [SMALL_STATE(1900)] = 61396, - [SMALL_STATE(1901)] = 61408, - [SMALL_STATE(1902)] = 61420, - [SMALL_STATE(1903)] = 61432, - [SMALL_STATE(1904)] = 61446, - [SMALL_STATE(1905)] = 61460, - [SMALL_STATE(1906)] = 61474, - [SMALL_STATE(1907)] = 61488, - [SMALL_STATE(1908)] = 61500, - [SMALL_STATE(1909)] = 61512, - [SMALL_STATE(1910)] = 61524, - [SMALL_STATE(1911)] = 61536, - [SMALL_STATE(1912)] = 61548, - [SMALL_STATE(1913)] = 61562, - [SMALL_STATE(1914)] = 61576, - [SMALL_STATE(1915)] = 61590, - [SMALL_STATE(1916)] = 61604, - [SMALL_STATE(1917)] = 61616, - [SMALL_STATE(1918)] = 61628, - [SMALL_STATE(1919)] = 61642, - [SMALL_STATE(1920)] = 61656, - [SMALL_STATE(1921)] = 61670, - [SMALL_STATE(1922)] = 61682, - [SMALL_STATE(1923)] = 61696, - [SMALL_STATE(1924)] = 61706, - [SMALL_STATE(1925)] = 61716, - [SMALL_STATE(1926)] = 61730, - [SMALL_STATE(1927)] = 61740, - [SMALL_STATE(1928)] = 61754, - [SMALL_STATE(1929)] = 61768, - [SMALL_STATE(1930)] = 61782, - [SMALL_STATE(1931)] = 61796, - [SMALL_STATE(1932)] = 61810, - [SMALL_STATE(1933)] = 61824, - [SMALL_STATE(1934)] = 61838, - [SMALL_STATE(1935)] = 61848, - [SMALL_STATE(1936)] = 61858, - [SMALL_STATE(1937)] = 61872, - [SMALL_STATE(1938)] = 61886, - [SMALL_STATE(1939)] = 61900, - [SMALL_STATE(1940)] = 61914, - [SMALL_STATE(1941)] = 61928, - [SMALL_STATE(1942)] = 61942, - [SMALL_STATE(1943)] = 61956, - [SMALL_STATE(1944)] = 61970, - [SMALL_STATE(1945)] = 61980, - [SMALL_STATE(1946)] = 61992, - [SMALL_STATE(1947)] = 62004, - [SMALL_STATE(1948)] = 62018, - [SMALL_STATE(1949)] = 62032, - [SMALL_STATE(1950)] = 62046, - [SMALL_STATE(1951)] = 62058, - [SMALL_STATE(1952)] = 62070, - [SMALL_STATE(1953)] = 62084, - [SMALL_STATE(1954)] = 62098, - [SMALL_STATE(1955)] = 62112, - [SMALL_STATE(1956)] = 62126, - [SMALL_STATE(1957)] = 62140, - [SMALL_STATE(1958)] = 62154, - [SMALL_STATE(1959)] = 62168, - [SMALL_STATE(1960)] = 62182, - [SMALL_STATE(1961)] = 62196, - [SMALL_STATE(1962)] = 62210, - [SMALL_STATE(1963)] = 62224, - [SMALL_STATE(1964)] = 62234, - [SMALL_STATE(1965)] = 62246, - [SMALL_STATE(1966)] = 62260, - [SMALL_STATE(1967)] = 62274, - [SMALL_STATE(1968)] = 62288, - [SMALL_STATE(1969)] = 62302, - [SMALL_STATE(1970)] = 62316, - [SMALL_STATE(1971)] = 62326, - [SMALL_STATE(1972)] = 62338, - [SMALL_STATE(1973)] = 62352, - [SMALL_STATE(1974)] = 62366, - [SMALL_STATE(1975)] = 62380, - [SMALL_STATE(1976)] = 62394, - [SMALL_STATE(1977)] = 62408, - [SMALL_STATE(1978)] = 62422, - [SMALL_STATE(1979)] = 62436, - [SMALL_STATE(1980)] = 62450, - [SMALL_STATE(1981)] = 62464, - [SMALL_STATE(1982)] = 62478, - [SMALL_STATE(1983)] = 62492, - [SMALL_STATE(1984)] = 62506, - [SMALL_STATE(1985)] = 62520, - [SMALL_STATE(1986)] = 62530, - [SMALL_STATE(1987)] = 62542, - [SMALL_STATE(1988)] = 62556, - [SMALL_STATE(1989)] = 62570, - [SMALL_STATE(1990)] = 62584, - [SMALL_STATE(1991)] = 62596, - [SMALL_STATE(1992)] = 62610, - [SMALL_STATE(1993)] = 62624, - [SMALL_STATE(1994)] = 62638, - [SMALL_STATE(1995)] = 62648, - [SMALL_STATE(1996)] = 62662, - [SMALL_STATE(1997)] = 62676, - [SMALL_STATE(1998)] = 62690, - [SMALL_STATE(1999)] = 62704, - [SMALL_STATE(2000)] = 62718, - [SMALL_STATE(2001)] = 62732, - [SMALL_STATE(2002)] = 62746, - [SMALL_STATE(2003)] = 62760, - [SMALL_STATE(2004)] = 62772, - [SMALL_STATE(2005)] = 62786, - [SMALL_STATE(2006)] = 62798, - [SMALL_STATE(2007)] = 62812, - [SMALL_STATE(2008)] = 62826, - [SMALL_STATE(2009)] = 62840, - [SMALL_STATE(2010)] = 62850, - [SMALL_STATE(2011)] = 62864, - [SMALL_STATE(2012)] = 62876, - [SMALL_STATE(2013)] = 62888, - [SMALL_STATE(2014)] = 62902, - [SMALL_STATE(2015)] = 62916, - [SMALL_STATE(2016)] = 62930, - [SMALL_STATE(2017)] = 62944, - [SMALL_STATE(2018)] = 62958, - [SMALL_STATE(2019)] = 62970, - [SMALL_STATE(2020)] = 62982, - [SMALL_STATE(2021)] = 62996, - [SMALL_STATE(2022)] = 63006, - [SMALL_STATE(2023)] = 63020, - [SMALL_STATE(2024)] = 63034, - [SMALL_STATE(2025)] = 63048, - [SMALL_STATE(2026)] = 63062, - [SMALL_STATE(2027)] = 63076, - [SMALL_STATE(2028)] = 63090, - [SMALL_STATE(2029)] = 63104, - [SMALL_STATE(2030)] = 63116, - [SMALL_STATE(2031)] = 63130, - [SMALL_STATE(2032)] = 63144, - [SMALL_STATE(2033)] = 63158, - [SMALL_STATE(2034)] = 63172, - [SMALL_STATE(2035)] = 63186, - [SMALL_STATE(2036)] = 63200, - [SMALL_STATE(2037)] = 63214, - [SMALL_STATE(2038)] = 63226, - [SMALL_STATE(2039)] = 63240, - [SMALL_STATE(2040)] = 63254, - [SMALL_STATE(2041)] = 63268, - [SMALL_STATE(2042)] = 63282, - [SMALL_STATE(2043)] = 63296, - [SMALL_STATE(2044)] = 63310, - [SMALL_STATE(2045)] = 63324, - [SMALL_STATE(2046)] = 63338, - [SMALL_STATE(2047)] = 63352, - [SMALL_STATE(2048)] = 63366, - [SMALL_STATE(2049)] = 63380, - [SMALL_STATE(2050)] = 63394, - [SMALL_STATE(2051)] = 63408, - [SMALL_STATE(2052)] = 63422, - [SMALL_STATE(2053)] = 63432, - [SMALL_STATE(2054)] = 63446, - [SMALL_STATE(2055)] = 63460, - [SMALL_STATE(2056)] = 63474, - [SMALL_STATE(2057)] = 63486, - [SMALL_STATE(2058)] = 63500, - [SMALL_STATE(2059)] = 63514, - [SMALL_STATE(2060)] = 63524, - [SMALL_STATE(2061)] = 63538, - [SMALL_STATE(2062)] = 63548, - [SMALL_STATE(2063)] = 63562, - [SMALL_STATE(2064)] = 63572, - [SMALL_STATE(2065)] = 63582, - [SMALL_STATE(2066)] = 63596, - [SMALL_STATE(2067)] = 63610, - [SMALL_STATE(2068)] = 63624, - [SMALL_STATE(2069)] = 63638, - [SMALL_STATE(2070)] = 63652, - [SMALL_STATE(2071)] = 63666, - [SMALL_STATE(2072)] = 63680, - [SMALL_STATE(2073)] = 63690, - [SMALL_STATE(2074)] = 63704, - [SMALL_STATE(2075)] = 63718, - [SMALL_STATE(2076)] = 63732, - [SMALL_STATE(2077)] = 63746, - [SMALL_STATE(2078)] = 63760, - [SMALL_STATE(2079)] = 63774, - [SMALL_STATE(2080)] = 63788, - [SMALL_STATE(2081)] = 63798, - [SMALL_STATE(2082)] = 63808, - [SMALL_STATE(2083)] = 63822, - [SMALL_STATE(2084)] = 63836, - [SMALL_STATE(2085)] = 63850, - [SMALL_STATE(2086)] = 63864, - [SMALL_STATE(2087)] = 63874, - [SMALL_STATE(2088)] = 63888, - [SMALL_STATE(2089)] = 63902, - [SMALL_STATE(2090)] = 63916, - [SMALL_STATE(2091)] = 63930, - [SMALL_STATE(2092)] = 63944, - [SMALL_STATE(2093)] = 63958, - [SMALL_STATE(2094)] = 63972, - [SMALL_STATE(2095)] = 63986, - [SMALL_STATE(2096)] = 63996, - [SMALL_STATE(2097)] = 64010, - [SMALL_STATE(2098)] = 64024, - [SMALL_STATE(2099)] = 64038, - [SMALL_STATE(2100)] = 64048, - [SMALL_STATE(2101)] = 64062, - [SMALL_STATE(2102)] = 64076, - [SMALL_STATE(2103)] = 64090, - [SMALL_STATE(2104)] = 64100, - [SMALL_STATE(2105)] = 64114, - [SMALL_STATE(2106)] = 64128, - [SMALL_STATE(2107)] = 64142, - [SMALL_STATE(2108)] = 64152, - [SMALL_STATE(2109)] = 64166, - [SMALL_STATE(2110)] = 64180, - [SMALL_STATE(2111)] = 64194, - [SMALL_STATE(2112)] = 64208, - [SMALL_STATE(2113)] = 64222, - [SMALL_STATE(2114)] = 64236, - [SMALL_STATE(2115)] = 64250, - [SMALL_STATE(2116)] = 64264, - [SMALL_STATE(2117)] = 64276, - [SMALL_STATE(2118)] = 64290, - [SMALL_STATE(2119)] = 64304, - [SMALL_STATE(2120)] = 64318, - [SMALL_STATE(2121)] = 64332, - [SMALL_STATE(2122)] = 64344, - [SMALL_STATE(2123)] = 64358, - [SMALL_STATE(2124)] = 64372, - [SMALL_STATE(2125)] = 64386, - [SMALL_STATE(2126)] = 64397, - [SMALL_STATE(2127)] = 64408, - [SMALL_STATE(2128)] = 64419, - [SMALL_STATE(2129)] = 64430, - [SMALL_STATE(2130)] = 64441, - [SMALL_STATE(2131)] = 64450, - [SMALL_STATE(2132)] = 64461, - [SMALL_STATE(2133)] = 64470, - [SMALL_STATE(2134)] = 64481, - [SMALL_STATE(2135)] = 64492, - [SMALL_STATE(2136)] = 64503, - [SMALL_STATE(2137)] = 64514, - [SMALL_STATE(2138)] = 64525, - [SMALL_STATE(2139)] = 64536, - [SMALL_STATE(2140)] = 64547, - [SMALL_STATE(2141)] = 64558, - [SMALL_STATE(2142)] = 64569, - [SMALL_STATE(2143)] = 64580, - [SMALL_STATE(2144)] = 64591, - [SMALL_STATE(2145)] = 64602, - [SMALL_STATE(2146)] = 64613, - [SMALL_STATE(2147)] = 64624, - [SMALL_STATE(2148)] = 64635, - [SMALL_STATE(2149)] = 64646, - [SMALL_STATE(2150)] = 64657, - [SMALL_STATE(2151)] = 64668, - [SMALL_STATE(2152)] = 64679, - [SMALL_STATE(2153)] = 64690, - [SMALL_STATE(2154)] = 64701, - [SMALL_STATE(2155)] = 64712, - [SMALL_STATE(2156)] = 64723, - [SMALL_STATE(2157)] = 64734, - [SMALL_STATE(2158)] = 64745, - [SMALL_STATE(2159)] = 64756, - [SMALL_STATE(2160)] = 64765, - [SMALL_STATE(2161)] = 64776, - [SMALL_STATE(2162)] = 64787, - [SMALL_STATE(2163)] = 64798, - [SMALL_STATE(2164)] = 64809, - [SMALL_STATE(2165)] = 64820, - [SMALL_STATE(2166)] = 64831, - [SMALL_STATE(2167)] = 64842, - [SMALL_STATE(2168)] = 64853, - [SMALL_STATE(2169)] = 64864, - [SMALL_STATE(2170)] = 64873, - [SMALL_STATE(2171)] = 64884, - [SMALL_STATE(2172)] = 64895, - [SMALL_STATE(2173)] = 64906, - [SMALL_STATE(2174)] = 64917, - [SMALL_STATE(2175)] = 64928, - [SMALL_STATE(2176)] = 64939, - [SMALL_STATE(2177)] = 64950, - [SMALL_STATE(2178)] = 64961, - [SMALL_STATE(2179)] = 64972, - [SMALL_STATE(2180)] = 64983, - [SMALL_STATE(2181)] = 64994, - [SMALL_STATE(2182)] = 65005, - [SMALL_STATE(2183)] = 65016, - [SMALL_STATE(2184)] = 65027, - [SMALL_STATE(2185)] = 65036, - [SMALL_STATE(2186)] = 65045, - [SMALL_STATE(2187)] = 65056, - [SMALL_STATE(2188)] = 65067, - [SMALL_STATE(2189)] = 65078, - [SMALL_STATE(2190)] = 65089, - [SMALL_STATE(2191)] = 65100, - [SMALL_STATE(2192)] = 65111, - [SMALL_STATE(2193)] = 65122, - [SMALL_STATE(2194)] = 65133, - [SMALL_STATE(2195)] = 65144, - [SMALL_STATE(2196)] = 65155, - [SMALL_STATE(2197)] = 65164, - [SMALL_STATE(2198)] = 65173, - [SMALL_STATE(2199)] = 65182, - [SMALL_STATE(2200)] = 65193, - [SMALL_STATE(2201)] = 65204, - [SMALL_STATE(2202)] = 65215, - [SMALL_STATE(2203)] = 65226, - [SMALL_STATE(2204)] = 65237, - [SMALL_STATE(2205)] = 65248, - [SMALL_STATE(2206)] = 65259, - [SMALL_STATE(2207)] = 65270, - [SMALL_STATE(2208)] = 65281, - [SMALL_STATE(2209)] = 65292, - [SMALL_STATE(2210)] = 65303, - [SMALL_STATE(2211)] = 65314, - [SMALL_STATE(2212)] = 65325, - [SMALL_STATE(2213)] = 65336, - [SMALL_STATE(2214)] = 65347, - [SMALL_STATE(2215)] = 65358, - [SMALL_STATE(2216)] = 65367, - [SMALL_STATE(2217)] = 65378, - [SMALL_STATE(2218)] = 65389, - [SMALL_STATE(2219)] = 65400, - [SMALL_STATE(2220)] = 65409, - [SMALL_STATE(2221)] = 65420, - [SMALL_STATE(2222)] = 65431, - [SMALL_STATE(2223)] = 65442, - [SMALL_STATE(2224)] = 65453, - [SMALL_STATE(2225)] = 65464, - [SMALL_STATE(2226)] = 65475, - [SMALL_STATE(2227)] = 65486, - [SMALL_STATE(2228)] = 65495, - [SMALL_STATE(2229)] = 65506, - [SMALL_STATE(2230)] = 65517, - [SMALL_STATE(2231)] = 65528, - [SMALL_STATE(2232)] = 65539, - [SMALL_STATE(2233)] = 65550, - [SMALL_STATE(2234)] = 65559, - [SMALL_STATE(2235)] = 65570, - [SMALL_STATE(2236)] = 65581, - [SMALL_STATE(2237)] = 65592, - [SMALL_STATE(2238)] = 65603, - [SMALL_STATE(2239)] = 65614, - [SMALL_STATE(2240)] = 65625, - [SMALL_STATE(2241)] = 65636, - [SMALL_STATE(2242)] = 65647, - [SMALL_STATE(2243)] = 65658, - [SMALL_STATE(2244)] = 65669, - [SMALL_STATE(2245)] = 65680, - [SMALL_STATE(2246)] = 65691, - [SMALL_STATE(2247)] = 65700, - [SMALL_STATE(2248)] = 65711, - [SMALL_STATE(2249)] = 65722, - [SMALL_STATE(2250)] = 65733, - [SMALL_STATE(2251)] = 65742, - [SMALL_STATE(2252)] = 65753, - [SMALL_STATE(2253)] = 65764, - [SMALL_STATE(2254)] = 65775, - [SMALL_STATE(2255)] = 65786, - [SMALL_STATE(2256)] = 65797, - [SMALL_STATE(2257)] = 65808, - [SMALL_STATE(2258)] = 65819, - [SMALL_STATE(2259)] = 65828, - [SMALL_STATE(2260)] = 65839, - [SMALL_STATE(2261)] = 65850, - [SMALL_STATE(2262)] = 65861, - [SMALL_STATE(2263)] = 65872, - [SMALL_STATE(2264)] = 65883, - [SMALL_STATE(2265)] = 65894, - [SMALL_STATE(2266)] = 65905, - [SMALL_STATE(2267)] = 65914, - [SMALL_STATE(2268)] = 65925, - [SMALL_STATE(2269)] = 65936, - [SMALL_STATE(2270)] = 65947, - [SMALL_STATE(2271)] = 65958, - [SMALL_STATE(2272)] = 65969, - [SMALL_STATE(2273)] = 65980, - [SMALL_STATE(2274)] = 65991, - [SMALL_STATE(2275)] = 66002, - [SMALL_STATE(2276)] = 66013, - [SMALL_STATE(2277)] = 66022, - [SMALL_STATE(2278)] = 66033, - [SMALL_STATE(2279)] = 66044, - [SMALL_STATE(2280)] = 66055, - [SMALL_STATE(2281)] = 66066, - [SMALL_STATE(2282)] = 66077, - [SMALL_STATE(2283)] = 66088, - [SMALL_STATE(2284)] = 66099, - [SMALL_STATE(2285)] = 66110, - [SMALL_STATE(2286)] = 66121, - [SMALL_STATE(2287)] = 66130, - [SMALL_STATE(2288)] = 66141, - [SMALL_STATE(2289)] = 66152, - [SMALL_STATE(2290)] = 66163, - [SMALL_STATE(2291)] = 66174, - [SMALL_STATE(2292)] = 66185, - [SMALL_STATE(2293)] = 66194, - [SMALL_STATE(2294)] = 66203, - [SMALL_STATE(2295)] = 66214, - [SMALL_STATE(2296)] = 66225, - [SMALL_STATE(2297)] = 66234, - [SMALL_STATE(2298)] = 66245, - [SMALL_STATE(2299)] = 66254, - [SMALL_STATE(2300)] = 66263, - [SMALL_STATE(2301)] = 66274, - [SMALL_STATE(2302)] = 66285, - [SMALL_STATE(2303)] = 66296, - [SMALL_STATE(2304)] = 66305, - [SMALL_STATE(2305)] = 66316, - [SMALL_STATE(2306)] = 66327, - [SMALL_STATE(2307)] = 66338, - [SMALL_STATE(2308)] = 66347, - [SMALL_STATE(2309)] = 66356, - [SMALL_STATE(2310)] = 66367, - [SMALL_STATE(2311)] = 66376, - [SMALL_STATE(2312)] = 66384, - [SMALL_STATE(2313)] = 66392, - [SMALL_STATE(2314)] = 66400, - [SMALL_STATE(2315)] = 66408, - [SMALL_STATE(2316)] = 66416, - [SMALL_STATE(2317)] = 66424, - [SMALL_STATE(2318)] = 66432, - [SMALL_STATE(2319)] = 66440, - [SMALL_STATE(2320)] = 66448, - [SMALL_STATE(2321)] = 66456, - [SMALL_STATE(2322)] = 66464, - [SMALL_STATE(2323)] = 66472, - [SMALL_STATE(2324)] = 66480, - [SMALL_STATE(2325)] = 66488, - [SMALL_STATE(2326)] = 66496, - [SMALL_STATE(2327)] = 66504, - [SMALL_STATE(2328)] = 66512, - [SMALL_STATE(2329)] = 66520, - [SMALL_STATE(2330)] = 66528, - [SMALL_STATE(2331)] = 66536, - [SMALL_STATE(2332)] = 66544, - [SMALL_STATE(2333)] = 66552, - [SMALL_STATE(2334)] = 66560, - [SMALL_STATE(2335)] = 66568, - [SMALL_STATE(2336)] = 66576, - [SMALL_STATE(2337)] = 66584, - [SMALL_STATE(2338)] = 66592, - [SMALL_STATE(2339)] = 66600, - [SMALL_STATE(2340)] = 66608, - [SMALL_STATE(2341)] = 66616, - [SMALL_STATE(2342)] = 66624, - [SMALL_STATE(2343)] = 66632, - [SMALL_STATE(2344)] = 66640, - [SMALL_STATE(2345)] = 66648, - [SMALL_STATE(2346)] = 66656, - [SMALL_STATE(2347)] = 66664, - [SMALL_STATE(2348)] = 66672, - [SMALL_STATE(2349)] = 66680, - [SMALL_STATE(2350)] = 66688, - [SMALL_STATE(2351)] = 66696, - [SMALL_STATE(2352)] = 66704, - [SMALL_STATE(2353)] = 66712, - [SMALL_STATE(2354)] = 66720, - [SMALL_STATE(2355)] = 66728, - [SMALL_STATE(2356)] = 66736, - [SMALL_STATE(2357)] = 66744, - [SMALL_STATE(2358)] = 66752, - [SMALL_STATE(2359)] = 66760, - [SMALL_STATE(2360)] = 66768, - [SMALL_STATE(2361)] = 66776, - [SMALL_STATE(2362)] = 66784, - [SMALL_STATE(2363)] = 66792, - [SMALL_STATE(2364)] = 66800, - [SMALL_STATE(2365)] = 66808, - [SMALL_STATE(2366)] = 66816, - [SMALL_STATE(2367)] = 66824, - [SMALL_STATE(2368)] = 66832, - [SMALL_STATE(2369)] = 66840, - [SMALL_STATE(2370)] = 66848, - [SMALL_STATE(2371)] = 66856, - [SMALL_STATE(2372)] = 66864, - [SMALL_STATE(2373)] = 66872, - [SMALL_STATE(2374)] = 66880, - [SMALL_STATE(2375)] = 66888, - [SMALL_STATE(2376)] = 66896, - [SMALL_STATE(2377)] = 66904, - [SMALL_STATE(2378)] = 66912, - [SMALL_STATE(2379)] = 66920, - [SMALL_STATE(2380)] = 66928, - [SMALL_STATE(2381)] = 66936, - [SMALL_STATE(2382)] = 66944, - [SMALL_STATE(2383)] = 66952, - [SMALL_STATE(2384)] = 66960, - [SMALL_STATE(2385)] = 66968, - [SMALL_STATE(2386)] = 66976, - [SMALL_STATE(2387)] = 66984, - [SMALL_STATE(2388)] = 66992, - [SMALL_STATE(2389)] = 67000, - [SMALL_STATE(2390)] = 67008, - [SMALL_STATE(2391)] = 67016, - [SMALL_STATE(2392)] = 67024, - [SMALL_STATE(2393)] = 67032, - [SMALL_STATE(2394)] = 67040, - [SMALL_STATE(2395)] = 67048, - [SMALL_STATE(2396)] = 67056, - [SMALL_STATE(2397)] = 67064, - [SMALL_STATE(2398)] = 67072, - [SMALL_STATE(2399)] = 67080, - [SMALL_STATE(2400)] = 67088, - [SMALL_STATE(2401)] = 67096, - [SMALL_STATE(2402)] = 67104, - [SMALL_STATE(2403)] = 67112, - [SMALL_STATE(2404)] = 67120, - [SMALL_STATE(2405)] = 67128, - [SMALL_STATE(2406)] = 67136, - [SMALL_STATE(2407)] = 67144, - [SMALL_STATE(2408)] = 67152, - [SMALL_STATE(2409)] = 67160, - [SMALL_STATE(2410)] = 67168, - [SMALL_STATE(2411)] = 67176, - [SMALL_STATE(2412)] = 67184, - [SMALL_STATE(2413)] = 67192, - [SMALL_STATE(2414)] = 67200, - [SMALL_STATE(2415)] = 67208, - [SMALL_STATE(2416)] = 67216, - [SMALL_STATE(2417)] = 67224, - [SMALL_STATE(2418)] = 67232, - [SMALL_STATE(2419)] = 67240, - [SMALL_STATE(2420)] = 67248, - [SMALL_STATE(2421)] = 67256, - [SMALL_STATE(2422)] = 67264, - [SMALL_STATE(2423)] = 67272, - [SMALL_STATE(2424)] = 67280, - [SMALL_STATE(2425)] = 67288, - [SMALL_STATE(2426)] = 67296, - [SMALL_STATE(2427)] = 67304, - [SMALL_STATE(2428)] = 67312, - [SMALL_STATE(2429)] = 67320, - [SMALL_STATE(2430)] = 67328, - [SMALL_STATE(2431)] = 67336, - [SMALL_STATE(2432)] = 67344, - [SMALL_STATE(2433)] = 67352, - [SMALL_STATE(2434)] = 67360, - [SMALL_STATE(2435)] = 67368, - [SMALL_STATE(2436)] = 67376, - [SMALL_STATE(2437)] = 67384, - [SMALL_STATE(2438)] = 67392, - [SMALL_STATE(2439)] = 67400, - [SMALL_STATE(2440)] = 67408, - [SMALL_STATE(2441)] = 67416, - [SMALL_STATE(2442)] = 67424, - [SMALL_STATE(2443)] = 67432, - [SMALL_STATE(2444)] = 67440, - [SMALL_STATE(2445)] = 67448, - [SMALL_STATE(2446)] = 67456, - [SMALL_STATE(2447)] = 67464, - [SMALL_STATE(2448)] = 67472, - [SMALL_STATE(2449)] = 67480, - [SMALL_STATE(2450)] = 67488, - [SMALL_STATE(2451)] = 67496, - [SMALL_STATE(2452)] = 67504, - [SMALL_STATE(2453)] = 67512, - [SMALL_STATE(2454)] = 67520, - [SMALL_STATE(2455)] = 67528, - [SMALL_STATE(2456)] = 67536, - [SMALL_STATE(2457)] = 67544, - [SMALL_STATE(2458)] = 67552, - [SMALL_STATE(2459)] = 67560, - [SMALL_STATE(2460)] = 67568, - [SMALL_STATE(2461)] = 67576, - [SMALL_STATE(2462)] = 67584, - [SMALL_STATE(2463)] = 67592, - [SMALL_STATE(2464)] = 67600, - [SMALL_STATE(2465)] = 67608, - [SMALL_STATE(2466)] = 67616, - [SMALL_STATE(2467)] = 67624, - [SMALL_STATE(2468)] = 67632, - [SMALL_STATE(2469)] = 67640, - [SMALL_STATE(2470)] = 67648, - [SMALL_STATE(2471)] = 67656, - [SMALL_STATE(2472)] = 67664, - [SMALL_STATE(2473)] = 67672, - [SMALL_STATE(2474)] = 67680, - [SMALL_STATE(2475)] = 67688, - [SMALL_STATE(2476)] = 67696, - [SMALL_STATE(2477)] = 67704, - [SMALL_STATE(2478)] = 67712, - [SMALL_STATE(2479)] = 67720, - [SMALL_STATE(2480)] = 67728, - [SMALL_STATE(2481)] = 67736, - [SMALL_STATE(2482)] = 67744, - [SMALL_STATE(2483)] = 67752, - [SMALL_STATE(2484)] = 67760, - [SMALL_STATE(2485)] = 67768, - [SMALL_STATE(2486)] = 67776, - [SMALL_STATE(2487)] = 67784, - [SMALL_STATE(2488)] = 67792, - [SMALL_STATE(2489)] = 67800, - [SMALL_STATE(2490)] = 67808, - [SMALL_STATE(2491)] = 67816, - [SMALL_STATE(2492)] = 67824, - [SMALL_STATE(2493)] = 67832, - [SMALL_STATE(2494)] = 67840, - [SMALL_STATE(2495)] = 67848, - [SMALL_STATE(2496)] = 67856, - [SMALL_STATE(2497)] = 67864, - [SMALL_STATE(2498)] = 67872, - [SMALL_STATE(2499)] = 67880, - [SMALL_STATE(2500)] = 67888, - [SMALL_STATE(2501)] = 67896, - [SMALL_STATE(2502)] = 67904, - [SMALL_STATE(2503)] = 67912, - [SMALL_STATE(2504)] = 67920, - [SMALL_STATE(2505)] = 67928, - [SMALL_STATE(2506)] = 67936, - [SMALL_STATE(2507)] = 67944, - [SMALL_STATE(2508)] = 67952, - [SMALL_STATE(2509)] = 67960, - [SMALL_STATE(2510)] = 67968, - [SMALL_STATE(2511)] = 67976, - [SMALL_STATE(2512)] = 67984, - [SMALL_STATE(2513)] = 67992, - [SMALL_STATE(2514)] = 68000, - [SMALL_STATE(2515)] = 68008, - [SMALL_STATE(2516)] = 68016, - [SMALL_STATE(2517)] = 68024, - [SMALL_STATE(2518)] = 68032, - [SMALL_STATE(2519)] = 68040, - [SMALL_STATE(2520)] = 68048, - [SMALL_STATE(2521)] = 68056, - [SMALL_STATE(2522)] = 68064, - [SMALL_STATE(2523)] = 68072, - [SMALL_STATE(2524)] = 68080, - [SMALL_STATE(2525)] = 68088, - [SMALL_STATE(2526)] = 68096, - [SMALL_STATE(2527)] = 68104, - [SMALL_STATE(2528)] = 68112, - [SMALL_STATE(2529)] = 68120, - [SMALL_STATE(2530)] = 68128, - [SMALL_STATE(2531)] = 68136, - [SMALL_STATE(2532)] = 68144, - [SMALL_STATE(2533)] = 68152, - [SMALL_STATE(2534)] = 68160, - [SMALL_STATE(2535)] = 68168, - [SMALL_STATE(2536)] = 68176, - [SMALL_STATE(2537)] = 68184, - [SMALL_STATE(2538)] = 68192, - [SMALL_STATE(2539)] = 68200, - [SMALL_STATE(2540)] = 68208, - [SMALL_STATE(2541)] = 68216, - [SMALL_STATE(2542)] = 68224, - [SMALL_STATE(2543)] = 68232, + [SMALL_STATE(738)] = 0, + [SMALL_STATE(739)] = 67, + [SMALL_STATE(740)] = 134, + [SMALL_STATE(741)] = 201, + [SMALL_STATE(742)] = 268, + [SMALL_STATE(743)] = 331, + [SMALL_STATE(744)] = 402, + [SMALL_STATE(745)] = 470, + [SMALL_STATE(746)] = 538, + [SMALL_STATE(747)] = 595, + [SMALL_STATE(748)] = 660, + [SMALL_STATE(749)] = 725, + [SMALL_STATE(750)] = 786, + [SMALL_STATE(751)] = 847, + [SMALL_STATE(752)] = 908, + [SMALL_STATE(753)] = 971, + [SMALL_STATE(754)] = 1036, + [SMALL_STATE(755)] = 1093, + [SMALL_STATE(756)] = 1150, + [SMALL_STATE(757)] = 1215, + [SMALL_STATE(758)] = 1276, + [SMALL_STATE(759)] = 1333, + [SMALL_STATE(760)] = 1390, + [SMALL_STATE(761)] = 1450, + [SMALL_STATE(762)] = 1508, + [SMALL_STATE(763)] = 1566, + [SMALL_STATE(764)] = 1626, + [SMALL_STATE(765)] = 1684, + [SMALL_STATE(766)] = 1744, + [SMALL_STATE(767)] = 1800, + [SMALL_STATE(768)] = 1858, + [SMALL_STATE(769)] = 1913, + [SMALL_STATE(770)] = 1968, + [SMALL_STATE(771)] = 2023, + [SMALL_STATE(772)] = 2078, + [SMALL_STATE(773)] = 2137, + [SMALL_STATE(774)] = 2194, + [SMALL_STATE(775)] = 2249, + [SMALL_STATE(776)] = 2304, + [SMALL_STATE(777)] = 2359, + [SMALL_STATE(778)] = 2414, + [SMALL_STATE(779)] = 2469, + [SMALL_STATE(780)] = 2524, + [SMALL_STATE(781)] = 2579, + [SMALL_STATE(782)] = 2634, + [SMALL_STATE(783)] = 2689, + [SMALL_STATE(784)] = 2744, + [SMALL_STATE(785)] = 2799, + [SMALL_STATE(786)] = 2854, + [SMALL_STATE(787)] = 2909, + [SMALL_STATE(788)] = 2964, + [SMALL_STATE(789)] = 3019, + [SMALL_STATE(790)] = 3074, + [SMALL_STATE(791)] = 3133, + [SMALL_STATE(792)] = 3188, + [SMALL_STATE(793)] = 3243, + [SMALL_STATE(794)] = 3298, + [SMALL_STATE(795)] = 3353, + [SMALL_STATE(796)] = 3408, + [SMALL_STATE(797)] = 3463, + [SMALL_STATE(798)] = 3518, + [SMALL_STATE(799)] = 3573, + [SMALL_STATE(800)] = 3632, + [SMALL_STATE(801)] = 3687, + [SMALL_STATE(802)] = 3742, + [SMALL_STATE(803)] = 3797, + [SMALL_STATE(804)] = 3852, + [SMALL_STATE(805)] = 3909, + [SMALL_STATE(806)] = 3964, + [SMALL_STATE(807)] = 4021, + [SMALL_STATE(808)] = 4076, + [SMALL_STATE(809)] = 4133, + [SMALL_STATE(810)] = 4188, + [SMALL_STATE(811)] = 4243, + [SMALL_STATE(812)] = 4298, + [SMALL_STATE(813)] = 4353, + [SMALL_STATE(814)] = 4408, + [SMALL_STATE(815)] = 4463, + [SMALL_STATE(816)] = 4518, + [SMALL_STATE(817)] = 4573, + [SMALL_STATE(818)] = 4628, + [SMALL_STATE(819)] = 4683, + [SMALL_STATE(820)] = 4738, + [SMALL_STATE(821)] = 4793, + [SMALL_STATE(822)] = 4848, + [SMALL_STATE(823)] = 4903, + [SMALL_STATE(824)] = 4958, + [SMALL_STATE(825)] = 5013, + [SMALL_STATE(826)] = 5068, + [SMALL_STATE(827)] = 5123, + [SMALL_STATE(828)] = 5178, + [SMALL_STATE(829)] = 5233, + [SMALL_STATE(830)] = 5288, + [SMALL_STATE(831)] = 5343, + [SMALL_STATE(832)] = 5400, + [SMALL_STATE(833)] = 5455, + [SMALL_STATE(834)] = 5510, + [SMALL_STATE(835)] = 5565, + [SMALL_STATE(836)] = 5620, + [SMALL_STATE(837)] = 5675, + [SMALL_STATE(838)] = 5730, + [SMALL_STATE(839)] = 5785, + [SMALL_STATE(840)] = 5840, + [SMALL_STATE(841)] = 5895, + [SMALL_STATE(842)] = 5950, + [SMALL_STATE(843)] = 6005, + [SMALL_STATE(844)] = 6060, + [SMALL_STATE(845)] = 6115, + [SMALL_STATE(846)] = 6170, + [SMALL_STATE(847)] = 6225, + [SMALL_STATE(848)] = 6280, + [SMALL_STATE(849)] = 6335, + [SMALL_STATE(850)] = 6390, + [SMALL_STATE(851)] = 6445, + [SMALL_STATE(852)] = 6500, + [SMALL_STATE(853)] = 6555, + [SMALL_STATE(854)] = 6610, + [SMALL_STATE(855)] = 6665, + [SMALL_STATE(856)] = 6720, + [SMALL_STATE(857)] = 6775, + [SMALL_STATE(858)] = 6832, + [SMALL_STATE(859)] = 6887, + [SMALL_STATE(860)] = 6942, + [SMALL_STATE(861)] = 6997, + [SMALL_STATE(862)] = 7052, + [SMALL_STATE(863)] = 7107, + [SMALL_STATE(864)] = 7162, + [SMALL_STATE(865)] = 7217, + [SMALL_STATE(866)] = 7274, + [SMALL_STATE(867)] = 7331, + [SMALL_STATE(868)] = 7386, + [SMALL_STATE(869)] = 7441, + [SMALL_STATE(870)] = 7496, + [SMALL_STATE(871)] = 7551, + [SMALL_STATE(872)] = 7606, + [SMALL_STATE(873)] = 7663, + [SMALL_STATE(874)] = 7718, + [SMALL_STATE(875)] = 7773, + [SMALL_STATE(876)] = 7828, + [SMALL_STATE(877)] = 7883, + [SMALL_STATE(878)] = 7938, + [SMALL_STATE(879)] = 7993, + [SMALL_STATE(880)] = 8048, + [SMALL_STATE(881)] = 8105, + [SMALL_STATE(882)] = 8160, + [SMALL_STATE(883)] = 8215, + [SMALL_STATE(884)] = 8270, + [SMALL_STATE(885)] = 8327, + [SMALL_STATE(886)] = 8382, + [SMALL_STATE(887)] = 8437, + [SMALL_STATE(888)] = 8492, + [SMALL_STATE(889)] = 8547, + [SMALL_STATE(890)] = 8602, + [SMALL_STATE(891)] = 8657, + [SMALL_STATE(892)] = 8712, + [SMALL_STATE(893)] = 8767, + [SMALL_STATE(894)] = 8822, + [SMALL_STATE(895)] = 8877, + [SMALL_STATE(896)] = 8932, + [SMALL_STATE(897)] = 8987, + [SMALL_STATE(898)] = 9042, + [SMALL_STATE(899)] = 9097, + [SMALL_STATE(900)] = 9152, + [SMALL_STATE(901)] = 9207, + [SMALL_STATE(902)] = 9262, + [SMALL_STATE(903)] = 9317, + [SMALL_STATE(904)] = 9372, + [SMALL_STATE(905)] = 9427, + [SMALL_STATE(906)] = 9482, + [SMALL_STATE(907)] = 9537, + [SMALL_STATE(908)] = 9594, + [SMALL_STATE(909)] = 9649, + [SMALL_STATE(910)] = 9704, + [SMALL_STATE(911)] = 9759, + [SMALL_STATE(912)] = 9814, + [SMALL_STATE(913)] = 9869, + [SMALL_STATE(914)] = 9924, + [SMALL_STATE(915)] = 9979, + [SMALL_STATE(916)] = 10034, + [SMALL_STATE(917)] = 10089, + [SMALL_STATE(918)] = 10144, + [SMALL_STATE(919)] = 10199, + [SMALL_STATE(920)] = 10254, + [SMALL_STATE(921)] = 10309, + [SMALL_STATE(922)] = 10364, + [SMALL_STATE(923)] = 10419, + [SMALL_STATE(924)] = 10474, + [SMALL_STATE(925)] = 10529, + [SMALL_STATE(926)] = 10584, + [SMALL_STATE(927)] = 10639, + [SMALL_STATE(928)] = 10694, + [SMALL_STATE(929)] = 10749, + [SMALL_STATE(930)] = 10804, + [SMALL_STATE(931)] = 10859, + [SMALL_STATE(932)] = 10914, + [SMALL_STATE(933)] = 10969, + [SMALL_STATE(934)] = 11024, + [SMALL_STATE(935)] = 11079, + [SMALL_STATE(936)] = 11134, + [SMALL_STATE(937)] = 11189, + [SMALL_STATE(938)] = 11244, + [SMALL_STATE(939)] = 11299, + [SMALL_STATE(940)] = 11354, + [SMALL_STATE(941)] = 11409, + [SMALL_STATE(942)] = 11464, + [SMALL_STATE(943)] = 11519, + [SMALL_STATE(944)] = 11574, + [SMALL_STATE(945)] = 11629, + [SMALL_STATE(946)] = 11684, + [SMALL_STATE(947)] = 11739, + [SMALL_STATE(948)] = 11794, + [SMALL_STATE(949)] = 11849, + [SMALL_STATE(950)] = 11904, + [SMALL_STATE(951)] = 11959, + [SMALL_STATE(952)] = 12014, + [SMALL_STATE(953)] = 12069, + [SMALL_STATE(954)] = 12124, + [SMALL_STATE(955)] = 12179, + [SMALL_STATE(956)] = 12234, + [SMALL_STATE(957)] = 12289, + [SMALL_STATE(958)] = 12344, + [SMALL_STATE(959)] = 12399, + [SMALL_STATE(960)] = 12454, + [SMALL_STATE(961)] = 12509, + [SMALL_STATE(962)] = 12564, + [SMALL_STATE(963)] = 12619, + [SMALL_STATE(964)] = 12674, + [SMALL_STATE(965)] = 12729, + [SMALL_STATE(966)] = 12784, + [SMALL_STATE(967)] = 12839, + [SMALL_STATE(968)] = 12894, + [SMALL_STATE(969)] = 12949, + [SMALL_STATE(970)] = 13004, + [SMALL_STATE(971)] = 13059, + [SMALL_STATE(972)] = 13114, + [SMALL_STATE(973)] = 13169, + [SMALL_STATE(974)] = 13224, + [SMALL_STATE(975)] = 13279, + [SMALL_STATE(976)] = 13334, + [SMALL_STATE(977)] = 13389, + [SMALL_STATE(978)] = 13444, + [SMALL_STATE(979)] = 13499, + [SMALL_STATE(980)] = 13554, + [SMALL_STATE(981)] = 13609, + [SMALL_STATE(982)] = 13664, + [SMALL_STATE(983)] = 13719, + [SMALL_STATE(984)] = 13774, + [SMALL_STATE(985)] = 13829, + [SMALL_STATE(986)] = 13884, + [SMALL_STATE(987)] = 13939, + [SMALL_STATE(988)] = 13996, + [SMALL_STATE(989)] = 14051, + [SMALL_STATE(990)] = 14106, + [SMALL_STATE(991)] = 14163, + [SMALL_STATE(992)] = 14218, + [SMALL_STATE(993)] = 14273, + [SMALL_STATE(994)] = 14328, + [SMALL_STATE(995)] = 14383, + [SMALL_STATE(996)] = 14438, + [SMALL_STATE(997)] = 14493, + [SMALL_STATE(998)] = 14548, + [SMALL_STATE(999)] = 14603, + [SMALL_STATE(1000)] = 14658, + [SMALL_STATE(1001)] = 14713, + [SMALL_STATE(1002)] = 14768, + [SMALL_STATE(1003)] = 14823, + [SMALL_STATE(1004)] = 14878, + [SMALL_STATE(1005)] = 14933, + [SMALL_STATE(1006)] = 14988, + [SMALL_STATE(1007)] = 15045, + [SMALL_STATE(1008)] = 15100, + [SMALL_STATE(1009)] = 15155, + [SMALL_STATE(1010)] = 15210, + [SMALL_STATE(1011)] = 15265, + [SMALL_STATE(1012)] = 15320, + [SMALL_STATE(1013)] = 15375, + [SMALL_STATE(1014)] = 15430, + [SMALL_STATE(1015)] = 15485, + [SMALL_STATE(1016)] = 15540, + [SMALL_STATE(1017)] = 15595, + [SMALL_STATE(1018)] = 15650, + [SMALL_STATE(1019)] = 15705, + [SMALL_STATE(1020)] = 15760, + [SMALL_STATE(1021)] = 15815, + [SMALL_STATE(1022)] = 15870, + [SMALL_STATE(1023)] = 15925, + [SMALL_STATE(1024)] = 15980, + [SMALL_STATE(1025)] = 16035, + [SMALL_STATE(1026)] = 16090, + [SMALL_STATE(1027)] = 16144, + [SMALL_STATE(1028)] = 16198, + [SMALL_STATE(1029)] = 16254, + [SMALL_STATE(1030)] = 16308, + [SMALL_STATE(1031)] = 16364, + [SMALL_STATE(1032)] = 16418, + [SMALL_STATE(1033)] = 16472, + [SMALL_STATE(1034)] = 16526, + [SMALL_STATE(1035)] = 16580, + [SMALL_STATE(1036)] = 16634, + [SMALL_STATE(1037)] = 16688, + [SMALL_STATE(1038)] = 16742, + [SMALL_STATE(1039)] = 16796, + [SMALL_STATE(1040)] = 16850, + [SMALL_STATE(1041)] = 16904, + [SMALL_STATE(1042)] = 16958, + [SMALL_STATE(1043)] = 17014, + [SMALL_STATE(1044)] = 17068, + [SMALL_STATE(1045)] = 17122, + [SMALL_STATE(1046)] = 17176, + [SMALL_STATE(1047)] = 17230, + [SMALL_STATE(1048)] = 17284, + [SMALL_STATE(1049)] = 17338, + [SMALL_STATE(1050)] = 17392, + [SMALL_STATE(1051)] = 17446, + [SMALL_STATE(1052)] = 17500, + [SMALL_STATE(1053)] = 17554, + [SMALL_STATE(1054)] = 17608, + [SMALL_STATE(1055)] = 17662, + [SMALL_STATE(1056)] = 17716, + [SMALL_STATE(1057)] = 17770, + [SMALL_STATE(1058)] = 17824, + [SMALL_STATE(1059)] = 17882, + [SMALL_STATE(1060)] = 17936, + [SMALL_STATE(1061)] = 17990, + [SMALL_STATE(1062)] = 18044, + [SMALL_STATE(1063)] = 18098, + [SMALL_STATE(1064)] = 18152, + [SMALL_STATE(1065)] = 18206, + [SMALL_STATE(1066)] = 18260, + [SMALL_STATE(1067)] = 18314, + [SMALL_STATE(1068)] = 18368, + [SMALL_STATE(1069)] = 18422, + [SMALL_STATE(1070)] = 18476, + [SMALL_STATE(1071)] = 18530, + [SMALL_STATE(1072)] = 18584, + [SMALL_STATE(1073)] = 18638, + [SMALL_STATE(1074)] = 18692, + [SMALL_STATE(1075)] = 18746, + [SMALL_STATE(1076)] = 18800, + [SMALL_STATE(1077)] = 18854, + [SMALL_STATE(1078)] = 18944, + [SMALL_STATE(1079)] = 18998, + [SMALL_STATE(1080)] = 19052, + [SMALL_STATE(1081)] = 19106, + [SMALL_STATE(1082)] = 19160, + [SMALL_STATE(1083)] = 19214, + [SMALL_STATE(1084)] = 19268, + [SMALL_STATE(1085)] = 19322, + [SMALL_STATE(1086)] = 19376, + [SMALL_STATE(1087)] = 19430, + [SMALL_STATE(1088)] = 19484, + [SMALL_STATE(1089)] = 19538, + [SMALL_STATE(1090)] = 19592, + [SMALL_STATE(1091)] = 19648, + [SMALL_STATE(1092)] = 19702, + [SMALL_STATE(1093)] = 19756, + [SMALL_STATE(1094)] = 19810, + [SMALL_STATE(1095)] = 19864, + [SMALL_STATE(1096)] = 19954, + [SMALL_STATE(1097)] = 20008, + [SMALL_STATE(1098)] = 20062, + [SMALL_STATE(1099)] = 20116, + [SMALL_STATE(1100)] = 20170, + [SMALL_STATE(1101)] = 20224, + [SMALL_STATE(1102)] = 20278, + [SMALL_STATE(1103)] = 20332, + [SMALL_STATE(1104)] = 20386, + [SMALL_STATE(1105)] = 20440, + [SMALL_STATE(1106)] = 20494, + [SMALL_STATE(1107)] = 20548, + [SMALL_STATE(1108)] = 20602, + [SMALL_STATE(1109)] = 20656, + [SMALL_STATE(1110)] = 20710, + [SMALL_STATE(1111)] = 20764, + [SMALL_STATE(1112)] = 20818, + [SMALL_STATE(1113)] = 20872, + [SMALL_STATE(1114)] = 20926, + [SMALL_STATE(1115)] = 20980, + [SMALL_STATE(1116)] = 21034, + [SMALL_STATE(1117)] = 21088, + [SMALL_STATE(1118)] = 21142, + [SMALL_STATE(1119)] = 21196, + [SMALL_STATE(1120)] = 21250, + [SMALL_STATE(1121)] = 21304, + [SMALL_STATE(1122)] = 21358, + [SMALL_STATE(1123)] = 21412, + [SMALL_STATE(1124)] = 21466, + [SMALL_STATE(1125)] = 21520, + [SMALL_STATE(1126)] = 21574, + [SMALL_STATE(1127)] = 21655, + [SMALL_STATE(1128)] = 21716, + [SMALL_STATE(1129)] = 21769, + [SMALL_STATE(1130)] = 21856, + [SMALL_STATE(1131)] = 21917, + [SMALL_STATE(1132)] = 21978, + [SMALL_STATE(1133)] = 22059, + [SMALL_STATE(1134)] = 22122, + [SMALL_STATE(1135)] = 22203, + [SMALL_STATE(1136)] = 22264, + [SMALL_STATE(1137)] = 22345, + [SMALL_STATE(1138)] = 22426, + [SMALL_STATE(1139)] = 22499, + [SMALL_STATE(1140)] = 22586, + [SMALL_STATE(1141)] = 22639, + [SMALL_STATE(1142)] = 22706, + [SMALL_STATE(1143)] = 22783, + [SMALL_STATE(1144)] = 22862, + [SMALL_STATE(1145)] = 22933, + [SMALL_STATE(1146)] = 22994, + [SMALL_STATE(1147)] = 23063, + [SMALL_STATE(1148)] = 23128, + [SMALL_STATE(1149)] = 23209, + [SMALL_STATE(1150)] = 23295, + [SMALL_STATE(1151)] = 23383, + [SMALL_STATE(1152)] = 23471, + [SMALL_STATE(1153)] = 23551, + [SMALL_STATE(1154)] = 23603, + [SMALL_STATE(1155)] = 23661, + [SMALL_STATE(1156)] = 23749, + [SMALL_STATE(1157)] = 23835, + [SMALL_STATE(1158)] = 23923, + [SMALL_STATE(1159)] = 23975, + [SMALL_STATE(1160)] = 24032, + [SMALL_STATE(1161)] = 24109, + [SMALL_STATE(1162)] = 24186, + [SMALL_STATE(1163)] = 24263, + [SMALL_STATE(1164)] = 24318, + [SMALL_STATE(1165)] = 24395, + [SMALL_STATE(1166)] = 24445, + [SMALL_STATE(1167)] = 24535, + [SMALL_STATE(1168)] = 24585, + [SMALL_STATE(1169)] = 24635, + [SMALL_STATE(1170)] = 24685, + [SMALL_STATE(1171)] = 24775, + [SMALL_STATE(1172)] = 24825, + [SMALL_STATE(1173)] = 24877, + [SMALL_STATE(1174)] = 24929, + [SMALL_STATE(1175)] = 24979, + [SMALL_STATE(1176)] = 25029, + [SMALL_STATE(1177)] = 25083, + [SMALL_STATE(1178)] = 25133, + [SMALL_STATE(1179)] = 25187, + [SMALL_STATE(1180)] = 25261, + [SMALL_STATE(1181)] = 25311, + [SMALL_STATE(1182)] = 25362, + [SMALL_STATE(1183)] = 25441, + [SMALL_STATE(1184)] = 25492, + [SMALL_STATE(1185)] = 25543, + [SMALL_STATE(1186)] = 25630, + [SMALL_STATE(1187)] = 25717, + [SMALL_STATE(1188)] = 25768, + [SMALL_STATE(1189)] = 25847, + [SMALL_STATE(1190)] = 25923, + [SMALL_STATE(1191)] = 26007, + [SMALL_STATE(1192)] = 26091, + [SMALL_STATE(1193)] = 26173, + [SMALL_STATE(1194)] = 26257, + [SMALL_STATE(1195)] = 26341, + [SMALL_STATE(1196)] = 26417, + [SMALL_STATE(1197)] = 26501, + [SMALL_STATE(1198)] = 26585, + [SMALL_STATE(1199)] = 26669, + [SMALL_STATE(1200)] = 26753, + [SMALL_STATE(1201)] = 26837, + [SMALL_STATE(1202)] = 26921, + [SMALL_STATE(1203)] = 27005, + [SMALL_STATE(1204)] = 27089, + [SMALL_STATE(1205)] = 27173, + [SMALL_STATE(1206)] = 27257, + [SMALL_STATE(1207)] = 27341, + [SMALL_STATE(1208)] = 27397, + [SMALL_STATE(1209)] = 27479, + [SMALL_STATE(1210)] = 27561, + [SMALL_STATE(1211)] = 27637, + [SMALL_STATE(1212)] = 27721, + [SMALL_STATE(1213)] = 27805, + [SMALL_STATE(1214)] = 27889, + [SMALL_STATE(1215)] = 27973, + [SMALL_STATE(1216)] = 28057, + [SMALL_STATE(1217)] = 28141, + [SMALL_STATE(1218)] = 28225, + [SMALL_STATE(1219)] = 28281, + [SMALL_STATE(1220)] = 28365, + [SMALL_STATE(1221)] = 28441, + [SMALL_STATE(1222)] = 28525, + [SMALL_STATE(1223)] = 28609, + [SMALL_STATE(1224)] = 28665, + [SMALL_STATE(1225)] = 28721, + [SMALL_STATE(1226)] = 28805, + [SMALL_STATE(1227)] = 28889, + [SMALL_STATE(1228)] = 28971, + [SMALL_STATE(1229)] = 29047, + [SMALL_STATE(1230)] = 29107, + [SMALL_STATE(1231)] = 29191, + [SMALL_STATE(1232)] = 29255, + [SMALL_STATE(1233)] = 29339, + [SMALL_STATE(1234)] = 29423, + [SMALL_STATE(1235)] = 29505, + [SMALL_STATE(1236)] = 29587, + [SMALL_STATE(1237)] = 29671, + [SMALL_STATE(1238)] = 29755, + [SMALL_STATE(1239)] = 29839, + [SMALL_STATE(1240)] = 29905, + [SMALL_STATE(1241)] = 29979, + [SMALL_STATE(1242)] = 30051, + [SMALL_STATE(1243)] = 30133, + [SMALL_STATE(1244)] = 30195, + [SMALL_STATE(1245)] = 30279, + [SMALL_STATE(1246)] = 30363, + [SMALL_STATE(1247)] = 30445, + [SMALL_STATE(1248)] = 30513, + [SMALL_STATE(1249)] = 30597, + [SMALL_STATE(1250)] = 30673, + [SMALL_STATE(1251)] = 30757, + [SMALL_STATE(1252)] = 30815, + [SMALL_STATE(1253)] = 30899, + [SMALL_STATE(1254)] = 30981, + [SMALL_STATE(1255)] = 31065, + [SMALL_STATE(1256)] = 31149, + [SMALL_STATE(1257)] = 31233, + [SMALL_STATE(1258)] = 31317, + [SMALL_STATE(1259)] = 31401, + [SMALL_STATE(1260)] = 31485, + [SMALL_STATE(1261)] = 31567, + [SMALL_STATE(1262)] = 31651, + [SMALL_STATE(1263)] = 31733, + [SMALL_STATE(1264)] = 31815, + [SMALL_STATE(1265)] = 31887, + [SMALL_STATE(1266)] = 31968, + [SMALL_STATE(1267)] = 32049, + [SMALL_STATE(1268)] = 32130, + [SMALL_STATE(1269)] = 32211, + [SMALL_STATE(1270)] = 32292, + [SMALL_STATE(1271)] = 32373, + [SMALL_STATE(1272)] = 32454, + [SMALL_STATE(1273)] = 32535, + [SMALL_STATE(1274)] = 32616, + [SMALL_STATE(1275)] = 32685, + [SMALL_STATE(1276)] = 32766, + [SMALL_STATE(1277)] = 32847, + [SMALL_STATE(1278)] = 32928, + [SMALL_STATE(1279)] = 33009, + [SMALL_STATE(1280)] = 33090, + [SMALL_STATE(1281)] = 33171, + [SMALL_STATE(1282)] = 33252, + [SMALL_STATE(1283)] = 33333, + [SMALL_STATE(1284)] = 33414, + [SMALL_STATE(1285)] = 33495, + [SMALL_STATE(1286)] = 33576, + [SMALL_STATE(1287)] = 33657, + [SMALL_STATE(1288)] = 33738, + [SMALL_STATE(1289)] = 33819, + [SMALL_STATE(1290)] = 33900, + [SMALL_STATE(1291)] = 33981, + [SMALL_STATE(1292)] = 34062, + [SMALL_STATE(1293)] = 34143, + [SMALL_STATE(1294)] = 34224, + [SMALL_STATE(1295)] = 34305, + [SMALL_STATE(1296)] = 34386, + [SMALL_STATE(1297)] = 34455, + [SMALL_STATE(1298)] = 34536, + [SMALL_STATE(1299)] = 34602, + [SMALL_STATE(1300)] = 34668, + [SMALL_STATE(1301)] = 34734, + [SMALL_STATE(1302)] = 34800, + [SMALL_STATE(1303)] = 34866, + [SMALL_STATE(1304)] = 34907, + [SMALL_STATE(1305)] = 34948, + [SMALL_STATE(1306)] = 34989, + [SMALL_STATE(1307)] = 35045, + [SMALL_STATE(1308)] = 35101, + [SMALL_STATE(1309)] = 35157, + [SMALL_STATE(1310)] = 35213, + [SMALL_STATE(1311)] = 35269, + [SMALL_STATE(1312)] = 35325, + [SMALL_STATE(1313)] = 35381, + [SMALL_STATE(1314)] = 35434, + [SMALL_STATE(1315)] = 35487, + [SMALL_STATE(1316)] = 35518, + [SMALL_STATE(1317)] = 35549, + [SMALL_STATE(1318)] = 35592, + [SMALL_STATE(1319)] = 35633, + [SMALL_STATE(1320)] = 35663, + [SMALL_STATE(1321)] = 35693, + [SMALL_STATE(1322)] = 35731, + [SMALL_STATE(1323)] = 35769, + [SMALL_STATE(1324)] = 35799, + [SMALL_STATE(1325)] = 35829, + [SMALL_STATE(1326)] = 35859, + [SMALL_STATE(1327)] = 35889, + [SMALL_STATE(1328)] = 35919, + [SMALL_STATE(1329)] = 35949, + [SMALL_STATE(1330)] = 36004, + [SMALL_STATE(1331)] = 36037, + [SMALL_STATE(1332)] = 36092, + [SMALL_STATE(1333)] = 36125, + [SMALL_STATE(1334)] = 36158, + [SMALL_STATE(1335)] = 36184, + [SMALL_STATE(1336)] = 36208, + [SMALL_STATE(1337)] = 36233, + [SMALL_STATE(1338)] = 36258, + [SMALL_STATE(1339)] = 36283, + [SMALL_STATE(1340)] = 36308, + [SMALL_STATE(1341)] = 36333, + [SMALL_STATE(1342)] = 36380, + [SMALL_STATE(1343)] = 36403, + [SMALL_STATE(1344)] = 36428, + [SMALL_STATE(1345)] = 36473, + [SMALL_STATE(1346)] = 36518, + [SMALL_STATE(1347)] = 36543, + [SMALL_STATE(1348)] = 36568, + [SMALL_STATE(1349)] = 36599, + [SMALL_STATE(1350)] = 36622, + [SMALL_STATE(1351)] = 36647, + [SMALL_STATE(1352)] = 36670, + [SMALL_STATE(1353)] = 36695, + [SMALL_STATE(1354)] = 36718, + [SMALL_STATE(1355)] = 36744, + [SMALL_STATE(1356)] = 36766, + [SMALL_STATE(1357)] = 36790, + [SMALL_STATE(1358)] = 36816, + [SMALL_STATE(1359)] = 36838, + [SMALL_STATE(1360)] = 36864, + [SMALL_STATE(1361)] = 36888, + [SMALL_STATE(1362)] = 36934, + [SMALL_STATE(1363)] = 36956, + [SMALL_STATE(1364)] = 36978, + [SMALL_STATE(1365)] = 37002, + [SMALL_STATE(1366)] = 37026, + [SMALL_STATE(1367)] = 37054, + [SMALL_STATE(1368)] = 37078, + [SMALL_STATE(1369)] = 37100, + [SMALL_STATE(1370)] = 37126, + [SMALL_STATE(1371)] = 37152, + [SMALL_STATE(1372)] = 37176, + [SMALL_STATE(1373)] = 37200, + [SMALL_STATE(1374)] = 37226, + [SMALL_STATE(1375)] = 37250, + [SMALL_STATE(1376)] = 37273, + [SMALL_STATE(1377)] = 37294, + [SMALL_STATE(1378)] = 37315, + [SMALL_STATE(1379)] = 37336, + [SMALL_STATE(1380)] = 37357, + [SMALL_STATE(1381)] = 37378, + [SMALL_STATE(1382)] = 37399, + [SMALL_STATE(1383)] = 37420, + [SMALL_STATE(1384)] = 37441, + [SMALL_STATE(1385)] = 37464, + [SMALL_STATE(1386)] = 37485, + [SMALL_STATE(1387)] = 37506, + [SMALL_STATE(1388)] = 37527, + [SMALL_STATE(1389)] = 37548, + [SMALL_STATE(1390)] = 37569, + [SMALL_STATE(1391)] = 37590, + [SMALL_STATE(1392)] = 37611, + [SMALL_STATE(1393)] = 37632, + [SMALL_STATE(1394)] = 37653, + [SMALL_STATE(1395)] = 37674, + [SMALL_STATE(1396)] = 37699, + [SMALL_STATE(1397)] = 37720, + [SMALL_STATE(1398)] = 37741, + [SMALL_STATE(1399)] = 37762, + [SMALL_STATE(1400)] = 37783, + [SMALL_STATE(1401)] = 37804, + [SMALL_STATE(1402)] = 37825, + [SMALL_STATE(1403)] = 37846, + [SMALL_STATE(1404)] = 37867, + [SMALL_STATE(1405)] = 37888, + [SMALL_STATE(1406)] = 37911, + [SMALL_STATE(1407)] = 37937, + [SMALL_STATE(1408)] = 37961, + [SMALL_STATE(1409)] = 37997, + [SMALL_STATE(1410)] = 38021, + [SMALL_STATE(1411)] = 38043, + [SMALL_STATE(1412)] = 38067, + [SMALL_STATE(1413)] = 38091, + [SMALL_STATE(1414)] = 38115, + [SMALL_STATE(1415)] = 38139, + [SMALL_STATE(1416)] = 38163, + [SMALL_STATE(1417)] = 38187, + [SMALL_STATE(1418)] = 38213, + [SMALL_STATE(1419)] = 38237, + [SMALL_STATE(1420)] = 38261, + [SMALL_STATE(1421)] = 38285, + [SMALL_STATE(1422)] = 38311, + [SMALL_STATE(1423)] = 38335, + [SMALL_STATE(1424)] = 38361, + [SMALL_STATE(1425)] = 38383, + [SMALL_STATE(1426)] = 38405, + [SMALL_STATE(1427)] = 38431, + [SMALL_STATE(1428)] = 38457, + [SMALL_STATE(1429)] = 38483, + [SMALL_STATE(1430)] = 38509, + [SMALL_STATE(1431)] = 38530, + [SMALL_STATE(1432)] = 38563, + [SMALL_STATE(1433)] = 38584, + [SMALL_STATE(1434)] = 38609, + [SMALL_STATE(1435)] = 38634, + [SMALL_STATE(1436)] = 38655, + [SMALL_STATE(1437)] = 38676, + [SMALL_STATE(1438)] = 38697, + [SMALL_STATE(1439)] = 38718, + [SMALL_STATE(1440)] = 38743, + [SMALL_STATE(1441)] = 38764, + [SMALL_STATE(1442)] = 38785, + [SMALL_STATE(1443)] = 38818, + [SMALL_STATE(1444)] = 38851, + [SMALL_STATE(1445)] = 38872, + [SMALL_STATE(1446)] = 38899, + [SMALL_STATE(1447)] = 38920, + [SMALL_STATE(1448)] = 38941, + [SMALL_STATE(1449)] = 38974, + [SMALL_STATE(1450)] = 38995, + [SMALL_STATE(1451)] = 39016, + [SMALL_STATE(1452)] = 39037, + [SMALL_STATE(1453)] = 39058, + [SMALL_STATE(1454)] = 39091, + [SMALL_STATE(1455)] = 39112, + [SMALL_STATE(1456)] = 39133, + [SMALL_STATE(1457)] = 39154, + [SMALL_STATE(1458)] = 39175, + [SMALL_STATE(1459)] = 39196, + [SMALL_STATE(1460)] = 39229, + [SMALL_STATE(1461)] = 39262, + [SMALL_STATE(1462)] = 39295, + [SMALL_STATE(1463)] = 39316, + [SMALL_STATE(1464)] = 39337, + [SMALL_STATE(1465)] = 39358, + [SMALL_STATE(1466)] = 39379, + [SMALL_STATE(1467)] = 39400, + [SMALL_STATE(1468)] = 39421, + [SMALL_STATE(1469)] = 39448, + [SMALL_STATE(1470)] = 39469, + [SMALL_STATE(1471)] = 39490, + [SMALL_STATE(1472)] = 39511, + [SMALL_STATE(1473)] = 39532, + [SMALL_STATE(1474)] = 39557, + [SMALL_STATE(1475)] = 39578, + [SMALL_STATE(1476)] = 39602, + [SMALL_STATE(1477)] = 39626, + [SMALL_STATE(1478)] = 39660, + [SMALL_STATE(1479)] = 39686, + [SMALL_STATE(1480)] = 39720, + [SMALL_STATE(1481)] = 39746, + [SMALL_STATE(1482)] = 39776, + [SMALL_STATE(1483)] = 39802, + [SMALL_STATE(1484)] = 39834, + [SMALL_STATE(1485)] = 39858, + [SMALL_STATE(1486)] = 39886, + [SMALL_STATE(1487)] = 39920, + [SMALL_STATE(1488)] = 39954, + [SMALL_STATE(1489)] = 39985, + [SMALL_STATE(1490)] = 40016, + [SMALL_STATE(1491)] = 40043, + [SMALL_STATE(1492)] = 40066, + [SMALL_STATE(1493)] = 40093, + [SMALL_STATE(1494)] = 40126, + [SMALL_STATE(1495)] = 40157, + [SMALL_STATE(1496)] = 40188, + [SMALL_STATE(1497)] = 40219, + [SMALL_STATE(1498)] = 40250, + [SMALL_STATE(1499)] = 40277, + [SMALL_STATE(1500)] = 40300, + [SMALL_STATE(1501)] = 40327, + [SMALL_STATE(1502)] = 40360, + [SMALL_STATE(1503)] = 40391, + [SMALL_STATE(1504)] = 40414, + [SMALL_STATE(1505)] = 40437, + [SMALL_STATE(1506)] = 40468, + [SMALL_STATE(1507)] = 40499, + [SMALL_STATE(1508)] = 40530, + [SMALL_STATE(1509)] = 40561, + [SMALL_STATE(1510)] = 40592, + [SMALL_STATE(1511)] = 40623, + [SMALL_STATE(1512)] = 40654, + [SMALL_STATE(1513)] = 40685, + [SMALL_STATE(1514)] = 40718, + [SMALL_STATE(1515)] = 40741, + [SMALL_STATE(1516)] = 40768, + [SMALL_STATE(1517)] = 40795, + [SMALL_STATE(1518)] = 40826, + [SMALL_STATE(1519)] = 40853, + [SMALL_STATE(1520)] = 40880, + [SMALL_STATE(1521)] = 40911, + [SMALL_STATE(1522)] = 40942, + [SMALL_STATE(1523)] = 40969, + [SMALL_STATE(1524)] = 40996, + [SMALL_STATE(1525)] = 41027, + [SMALL_STATE(1526)] = 41054, + [SMALL_STATE(1527)] = 41077, + [SMALL_STATE(1528)] = 41108, + [SMALL_STATE(1529)] = 41139, + [SMALL_STATE(1530)] = 41172, + [SMALL_STATE(1531)] = 41192, + [SMALL_STATE(1532)] = 41220, + [SMALL_STATE(1533)] = 41240, + [SMALL_STATE(1534)] = 41270, + [SMALL_STATE(1535)] = 41294, + [SMALL_STATE(1536)] = 41322, + [SMALL_STATE(1537)] = 41342, + [SMALL_STATE(1538)] = 41362, + [SMALL_STATE(1539)] = 41390, + [SMALL_STATE(1540)] = 41414, + [SMALL_STATE(1541)] = 41442, + [SMALL_STATE(1542)] = 41470, + [SMALL_STATE(1543)] = 41500, + [SMALL_STATE(1544)] = 41530, + [SMALL_STATE(1545)] = 41558, + [SMALL_STATE(1546)] = 41578, + [SMALL_STATE(1547)] = 41606, + [SMALL_STATE(1548)] = 41634, + [SMALL_STATE(1549)] = 41662, + [SMALL_STATE(1550)] = 41684, + [SMALL_STATE(1551)] = 41704, + [SMALL_STATE(1552)] = 41732, + [SMALL_STATE(1553)] = 41754, + [SMALL_STATE(1554)] = 41782, + [SMALL_STATE(1555)] = 41802, + [SMALL_STATE(1556)] = 41822, + [SMALL_STATE(1557)] = 41852, + [SMALL_STATE(1558)] = 41876, + [SMALL_STATE(1559)] = 41904, + [SMALL_STATE(1560)] = 41932, + [SMALL_STATE(1561)] = 41956, + [SMALL_STATE(1562)] = 41972, + [SMALL_STATE(1563)] = 42002, + [SMALL_STATE(1564)] = 42030, + [SMALL_STATE(1565)] = 42054, + [SMALL_STATE(1566)] = 42074, + [SMALL_STATE(1567)] = 42094, + [SMALL_STATE(1568)] = 42122, + [SMALL_STATE(1569)] = 42152, + [SMALL_STATE(1570)] = 42172, + [SMALL_STATE(1571)] = 42198, + [SMALL_STATE(1572)] = 42213, + [SMALL_STATE(1573)] = 42228, + [SMALL_STATE(1574)] = 42243, + [SMALL_STATE(1575)] = 42270, + [SMALL_STATE(1576)] = 42285, + [SMALL_STATE(1577)] = 42300, + [SMALL_STATE(1578)] = 42323, + [SMALL_STATE(1579)] = 42350, + [SMALL_STATE(1580)] = 42375, + [SMALL_STATE(1581)] = 42402, + [SMALL_STATE(1582)] = 42425, + [SMALL_STATE(1583)] = 42440, + [SMALL_STATE(1584)] = 42463, + [SMALL_STATE(1585)] = 42486, + [SMALL_STATE(1586)] = 42509, + [SMALL_STATE(1587)] = 42526, + [SMALL_STATE(1588)] = 42543, + [SMALL_STATE(1589)] = 42570, + [SMALL_STATE(1590)] = 42597, + [SMALL_STATE(1591)] = 42622, + [SMALL_STATE(1592)] = 42647, + [SMALL_STATE(1593)] = 42664, + [SMALL_STATE(1594)] = 42681, + [SMALL_STATE(1595)] = 42708, + [SMALL_STATE(1596)] = 42725, + [SMALL_STATE(1597)] = 42750, + [SMALL_STATE(1598)] = 42775, + [SMALL_STATE(1599)] = 42802, + [SMALL_STATE(1600)] = 42829, + [SMALL_STATE(1601)] = 42856, + [SMALL_STATE(1602)] = 42879, + [SMALL_STATE(1603)] = 42906, + [SMALL_STATE(1604)] = 42921, + [SMALL_STATE(1605)] = 42948, + [SMALL_STATE(1606)] = 42975, + [SMALL_STATE(1607)] = 42992, + [SMALL_STATE(1608)] = 43019, + [SMALL_STATE(1609)] = 43046, + [SMALL_STATE(1610)] = 43073, + [SMALL_STATE(1611)] = 43100, + [SMALL_STATE(1612)] = 43117, + [SMALL_STATE(1613)] = 43144, + [SMALL_STATE(1614)] = 43171, + [SMALL_STATE(1615)] = 43198, + [SMALL_STATE(1616)] = 43215, + [SMALL_STATE(1617)] = 43242, + [SMALL_STATE(1618)] = 43266, + [SMALL_STATE(1619)] = 43290, + [SMALL_STATE(1620)] = 43314, + [SMALL_STATE(1621)] = 43332, + [SMALL_STATE(1622)] = 43356, + [SMALL_STATE(1623)] = 43380, + [SMALL_STATE(1624)] = 43398, + [SMALL_STATE(1625)] = 43422, + [SMALL_STATE(1626)] = 43446, + [SMALL_STATE(1627)] = 43470, + [SMALL_STATE(1628)] = 43494, + [SMALL_STATE(1629)] = 43512, + [SMALL_STATE(1630)] = 43536, + [SMALL_STATE(1631)] = 43554, + [SMALL_STATE(1632)] = 43578, + [SMALL_STATE(1633)] = 43602, + [SMALL_STATE(1634)] = 43626, + [SMALL_STATE(1635)] = 43650, + [SMALL_STATE(1636)] = 43668, + [SMALL_STATE(1637)] = 43692, + [SMALL_STATE(1638)] = 43716, + [SMALL_STATE(1639)] = 43740, + [SMALL_STATE(1640)] = 43764, + [SMALL_STATE(1641)] = 43788, + [SMALL_STATE(1642)] = 43812, + [SMALL_STATE(1643)] = 43830, + [SMALL_STATE(1644)] = 43854, + [SMALL_STATE(1645)] = 43878, + [SMALL_STATE(1646)] = 43902, + [SMALL_STATE(1647)] = 43926, + [SMALL_STATE(1648)] = 43944, + [SMALL_STATE(1649)] = 43968, + [SMALL_STATE(1650)] = 43992, + [SMALL_STATE(1651)] = 44016, + [SMALL_STATE(1652)] = 44034, + [SMALL_STATE(1653)] = 44058, + [SMALL_STATE(1654)] = 44080, + [SMALL_STATE(1655)] = 44104, + [SMALL_STATE(1656)] = 44128, + [SMALL_STATE(1657)] = 44152, + [SMALL_STATE(1658)] = 44176, + [SMALL_STATE(1659)] = 44200, + [SMALL_STATE(1660)] = 44224, + [SMALL_STATE(1661)] = 44240, + [SMALL_STATE(1662)] = 44264, + [SMALL_STATE(1663)] = 44288, + [SMALL_STATE(1664)] = 44308, + [SMALL_STATE(1665)] = 44332, + [SMALL_STATE(1666)] = 44350, + [SMALL_STATE(1667)] = 44374, + [SMALL_STATE(1668)] = 44392, + [SMALL_STATE(1669)] = 44412, + [SMALL_STATE(1670)] = 44436, + [SMALL_STATE(1671)] = 44460, + [SMALL_STATE(1672)] = 44484, + [SMALL_STATE(1673)] = 44508, + [SMALL_STATE(1674)] = 44532, + [SMALL_STATE(1675)] = 44556, + [SMALL_STATE(1676)] = 44578, + [SMALL_STATE(1677)] = 44602, + [SMALL_STATE(1678)] = 44626, + [SMALL_STATE(1679)] = 44650, + [SMALL_STATE(1680)] = 44674, + [SMALL_STATE(1681)] = 44698, + [SMALL_STATE(1682)] = 44722, + [SMALL_STATE(1683)] = 44746, + [SMALL_STATE(1684)] = 44770, + [SMALL_STATE(1685)] = 44788, + [SMALL_STATE(1686)] = 44812, + [SMALL_STATE(1687)] = 44836, + [SMALL_STATE(1688)] = 44854, + [SMALL_STATE(1689)] = 44872, + [SMALL_STATE(1690)] = 44896, + [SMALL_STATE(1691)] = 44920, + [SMALL_STATE(1692)] = 44944, + [SMALL_STATE(1693)] = 44968, + [SMALL_STATE(1694)] = 44992, + [SMALL_STATE(1695)] = 45016, + [SMALL_STATE(1696)] = 45040, + [SMALL_STATE(1697)] = 45064, + [SMALL_STATE(1698)] = 45080, + [SMALL_STATE(1699)] = 45104, + [SMALL_STATE(1700)] = 45128, + [SMALL_STATE(1701)] = 45152, + [SMALL_STATE(1702)] = 45176, + [SMALL_STATE(1703)] = 45200, + [SMALL_STATE(1704)] = 45224, + [SMALL_STATE(1705)] = 45248, + [SMALL_STATE(1706)] = 45266, + [SMALL_STATE(1707)] = 45290, + [SMALL_STATE(1708)] = 45310, + [SMALL_STATE(1709)] = 45328, + [SMALL_STATE(1710)] = 45341, + [SMALL_STATE(1711)] = 45362, + [SMALL_STATE(1712)] = 45379, + [SMALL_STATE(1713)] = 45396, + [SMALL_STATE(1714)] = 45415, + [SMALL_STATE(1715)] = 45434, + [SMALL_STATE(1716)] = 45451, + [SMALL_STATE(1717)] = 45464, + [SMALL_STATE(1718)] = 45481, + [SMALL_STATE(1719)] = 45494, + [SMALL_STATE(1720)] = 45507, + [SMALL_STATE(1721)] = 45520, + [SMALL_STATE(1722)] = 45537, + [SMALL_STATE(1723)] = 45558, + [SMALL_STATE(1724)] = 45571, + [SMALL_STATE(1725)] = 45592, + [SMALL_STATE(1726)] = 45605, + [SMALL_STATE(1727)] = 45622, + [SMALL_STATE(1728)] = 45635, + [SMALL_STATE(1729)] = 45654, + [SMALL_STATE(1730)] = 45673, + [SMALL_STATE(1731)] = 45692, + [SMALL_STATE(1732)] = 45707, + [SMALL_STATE(1733)] = 45724, + [SMALL_STATE(1734)] = 45741, + [SMALL_STATE(1735)] = 45760, + [SMALL_STATE(1736)] = 45781, + [SMALL_STATE(1737)] = 45794, + [SMALL_STATE(1738)] = 45807, + [SMALL_STATE(1739)] = 45824, + [SMALL_STATE(1740)] = 45837, + [SMALL_STATE(1741)] = 45850, + [SMALL_STATE(1742)] = 45863, + [SMALL_STATE(1743)] = 45876, + [SMALL_STATE(1744)] = 45889, + [SMALL_STATE(1745)] = 45902, + [SMALL_STATE(1746)] = 45915, + [SMALL_STATE(1747)] = 45932, + [SMALL_STATE(1748)] = 45951, + [SMALL_STATE(1749)] = 45972, + [SMALL_STATE(1750)] = 45987, + [SMALL_STATE(1751)] = 46004, + [SMALL_STATE(1752)] = 46017, + [SMALL_STATE(1753)] = 46030, + [SMALL_STATE(1754)] = 46049, + [SMALL_STATE(1755)] = 46066, + [SMALL_STATE(1756)] = 46087, + [SMALL_STATE(1757)] = 46100, + [SMALL_STATE(1758)] = 46113, + [SMALL_STATE(1759)] = 46130, + [SMALL_STATE(1760)] = 46148, + [SMALL_STATE(1761)] = 46166, + [SMALL_STATE(1762)] = 46182, + [SMALL_STATE(1763)] = 46196, + [SMALL_STATE(1764)] = 46212, + [SMALL_STATE(1765)] = 46228, + [SMALL_STATE(1766)] = 46244, + [SMALL_STATE(1767)] = 46262, + [SMALL_STATE(1768)] = 46280, + [SMALL_STATE(1769)] = 46298, + [SMALL_STATE(1770)] = 46316, + [SMALL_STATE(1771)] = 46330, + [SMALL_STATE(1772)] = 46344, + [SMALL_STATE(1773)] = 46358, + [SMALL_STATE(1774)] = 46376, + [SMALL_STATE(1775)] = 46394, + [SMALL_STATE(1776)] = 46412, + [SMALL_STATE(1777)] = 46426, + [SMALL_STATE(1778)] = 46440, + [SMALL_STATE(1779)] = 46458, + [SMALL_STATE(1780)] = 46476, + [SMALL_STATE(1781)] = 46492, + [SMALL_STATE(1782)] = 46508, + [SMALL_STATE(1783)] = 46524, + [SMALL_STATE(1784)] = 46542, + [SMALL_STATE(1785)] = 46558, + [SMALL_STATE(1786)] = 46576, + [SMALL_STATE(1787)] = 46594, + [SMALL_STATE(1788)] = 46612, + [SMALL_STATE(1789)] = 46630, + [SMALL_STATE(1790)] = 46648, + [SMALL_STATE(1791)] = 46666, + [SMALL_STATE(1792)] = 46682, + [SMALL_STATE(1793)] = 46700, + [SMALL_STATE(1794)] = 46718, + [SMALL_STATE(1795)] = 46734, + [SMALL_STATE(1796)] = 46748, + [SMALL_STATE(1797)] = 46764, + [SMALL_STATE(1798)] = 46782, + [SMALL_STATE(1799)] = 46800, + [SMALL_STATE(1800)] = 46818, + [SMALL_STATE(1801)] = 46836, + [SMALL_STATE(1802)] = 46850, + [SMALL_STATE(1803)] = 46868, + [SMALL_STATE(1804)] = 46886, + [SMALL_STATE(1805)] = 46904, + [SMALL_STATE(1806)] = 46922, + [SMALL_STATE(1807)] = 46940, + [SMALL_STATE(1808)] = 46958, + [SMALL_STATE(1809)] = 46976, + [SMALL_STATE(1810)] = 46990, + [SMALL_STATE(1811)] = 47008, + [SMALL_STATE(1812)] = 47022, + [SMALL_STATE(1813)] = 47040, + [SMALL_STATE(1814)] = 47058, + [SMALL_STATE(1815)] = 47076, + [SMALL_STATE(1816)] = 47094, + [SMALL_STATE(1817)] = 47112, + [SMALL_STATE(1818)] = 47128, + [SMALL_STATE(1819)] = 47146, + [SMALL_STATE(1820)] = 47164, + [SMALL_STATE(1821)] = 47182, + [SMALL_STATE(1822)] = 47200, + [SMALL_STATE(1823)] = 47218, + [SMALL_STATE(1824)] = 47236, + [SMALL_STATE(1825)] = 47254, + [SMALL_STATE(1826)] = 47272, + [SMALL_STATE(1827)] = 47290, + [SMALL_STATE(1828)] = 47308, + [SMALL_STATE(1829)] = 47326, + [SMALL_STATE(1830)] = 47344, + [SMALL_STATE(1831)] = 47362, + [SMALL_STATE(1832)] = 47380, + [SMALL_STATE(1833)] = 47398, + [SMALL_STATE(1834)] = 47414, + [SMALL_STATE(1835)] = 47432, + [SMALL_STATE(1836)] = 47450, + [SMALL_STATE(1837)] = 47466, + [SMALL_STATE(1838)] = 47484, + [SMALL_STATE(1839)] = 47502, + [SMALL_STATE(1840)] = 47518, + [SMALL_STATE(1841)] = 47532, + [SMALL_STATE(1842)] = 47546, + [SMALL_STATE(1843)] = 47560, + [SMALL_STATE(1844)] = 47578, + [SMALL_STATE(1845)] = 47596, + [SMALL_STATE(1846)] = 47612, + [SMALL_STATE(1847)] = 47628, + [SMALL_STATE(1848)] = 47646, + [SMALL_STATE(1849)] = 47664, + [SMALL_STATE(1850)] = 47680, + [SMALL_STATE(1851)] = 47696, + [SMALL_STATE(1852)] = 47710, + [SMALL_STATE(1853)] = 47726, + [SMALL_STATE(1854)] = 47742, + [SMALL_STATE(1855)] = 47758, + [SMALL_STATE(1856)] = 47776, + [SMALL_STATE(1857)] = 47794, + [SMALL_STATE(1858)] = 47812, + [SMALL_STATE(1859)] = 47830, + [SMALL_STATE(1860)] = 47848, + [SMALL_STATE(1861)] = 47863, + [SMALL_STATE(1862)] = 47878, + [SMALL_STATE(1863)] = 47889, + [SMALL_STATE(1864)] = 47904, + [SMALL_STATE(1865)] = 47919, + [SMALL_STATE(1866)] = 47932, + [SMALL_STATE(1867)] = 47947, + [SMALL_STATE(1868)] = 47962, + [SMALL_STATE(1869)] = 47977, + [SMALL_STATE(1870)] = 47992, + [SMALL_STATE(1871)] = 48007, + [SMALL_STATE(1872)] = 48018, + [SMALL_STATE(1873)] = 48033, + [SMALL_STATE(1874)] = 48048, + [SMALL_STATE(1875)] = 48059, + [SMALL_STATE(1876)] = 48074, + [SMALL_STATE(1877)] = 48089, + [SMALL_STATE(1878)] = 48104, + [SMALL_STATE(1879)] = 48119, + [SMALL_STATE(1880)] = 48134, + [SMALL_STATE(1881)] = 48145, + [SMALL_STATE(1882)] = 48160, + [SMALL_STATE(1883)] = 48175, + [SMALL_STATE(1884)] = 48190, + [SMALL_STATE(1885)] = 48203, + [SMALL_STATE(1886)] = 48216, + [SMALL_STATE(1887)] = 48229, + [SMALL_STATE(1888)] = 48240, + [SMALL_STATE(1889)] = 48255, + [SMALL_STATE(1890)] = 48270, + [SMALL_STATE(1891)] = 48283, + [SMALL_STATE(1892)] = 48298, + [SMALL_STATE(1893)] = 48313, + [SMALL_STATE(1894)] = 48326, + [SMALL_STATE(1895)] = 48341, + [SMALL_STATE(1896)] = 48356, + [SMALL_STATE(1897)] = 48371, + [SMALL_STATE(1898)] = 48386, + [SMALL_STATE(1899)] = 48401, + [SMALL_STATE(1900)] = 48416, + [SMALL_STATE(1901)] = 48429, + [SMALL_STATE(1902)] = 48442, + [SMALL_STATE(1903)] = 48455, + [SMALL_STATE(1904)] = 48470, + [SMALL_STATE(1905)] = 48485, + [SMALL_STATE(1906)] = 48500, + [SMALL_STATE(1907)] = 48515, + [SMALL_STATE(1908)] = 48528, + [SMALL_STATE(1909)] = 48541, + [SMALL_STATE(1910)] = 48554, + [SMALL_STATE(1911)] = 48567, + [SMALL_STATE(1912)] = 48580, + [SMALL_STATE(1913)] = 48595, + [SMALL_STATE(1914)] = 48610, + [SMALL_STATE(1915)] = 48625, + [SMALL_STATE(1916)] = 48640, + [SMALL_STATE(1917)] = 48653, + [SMALL_STATE(1918)] = 48666, + [SMALL_STATE(1919)] = 48681, + [SMALL_STATE(1920)] = 48696, + [SMALL_STATE(1921)] = 48711, + [SMALL_STATE(1922)] = 48724, + [SMALL_STATE(1923)] = 48739, + [SMALL_STATE(1924)] = 48750, + [SMALL_STATE(1925)] = 48761, + [SMALL_STATE(1926)] = 48776, + [SMALL_STATE(1927)] = 48787, + [SMALL_STATE(1928)] = 48802, + [SMALL_STATE(1929)] = 48817, + [SMALL_STATE(1930)] = 48832, + [SMALL_STATE(1931)] = 48847, + [SMALL_STATE(1932)] = 48862, + [SMALL_STATE(1933)] = 48877, + [SMALL_STATE(1934)] = 48892, + [SMALL_STATE(1935)] = 48903, + [SMALL_STATE(1936)] = 48914, + [SMALL_STATE(1937)] = 48929, + [SMALL_STATE(1938)] = 48944, + [SMALL_STATE(1939)] = 48959, + [SMALL_STATE(1940)] = 48974, + [SMALL_STATE(1941)] = 48989, + [SMALL_STATE(1942)] = 49004, + [SMALL_STATE(1943)] = 49019, + [SMALL_STATE(1944)] = 49034, + [SMALL_STATE(1945)] = 49045, + [SMALL_STATE(1946)] = 49058, + [SMALL_STATE(1947)] = 49071, + [SMALL_STATE(1948)] = 49086, + [SMALL_STATE(1949)] = 49101, + [SMALL_STATE(1950)] = 49116, + [SMALL_STATE(1951)] = 49129, + [SMALL_STATE(1952)] = 49142, + [SMALL_STATE(1953)] = 49157, + [SMALL_STATE(1954)] = 49172, + [SMALL_STATE(1955)] = 49187, + [SMALL_STATE(1956)] = 49202, + [SMALL_STATE(1957)] = 49217, + [SMALL_STATE(1958)] = 49232, + [SMALL_STATE(1959)] = 49247, + [SMALL_STATE(1960)] = 49262, + [SMALL_STATE(1961)] = 49277, + [SMALL_STATE(1962)] = 49292, + [SMALL_STATE(1963)] = 49307, + [SMALL_STATE(1964)] = 49318, + [SMALL_STATE(1965)] = 49331, + [SMALL_STATE(1966)] = 49346, + [SMALL_STATE(1967)] = 49361, + [SMALL_STATE(1968)] = 49376, + [SMALL_STATE(1969)] = 49391, + [SMALL_STATE(1970)] = 49406, + [SMALL_STATE(1971)] = 49417, + [SMALL_STATE(1972)] = 49430, + [SMALL_STATE(1973)] = 49445, + [SMALL_STATE(1974)] = 49460, + [SMALL_STATE(1975)] = 49475, + [SMALL_STATE(1976)] = 49490, + [SMALL_STATE(1977)] = 49505, + [SMALL_STATE(1978)] = 49520, + [SMALL_STATE(1979)] = 49535, + [SMALL_STATE(1980)] = 49550, + [SMALL_STATE(1981)] = 49565, + [SMALL_STATE(1982)] = 49580, + [SMALL_STATE(1983)] = 49595, + [SMALL_STATE(1984)] = 49610, + [SMALL_STATE(1985)] = 49625, + [SMALL_STATE(1986)] = 49636, + [SMALL_STATE(1987)] = 49649, + [SMALL_STATE(1988)] = 49664, + [SMALL_STATE(1989)] = 49679, + [SMALL_STATE(1990)] = 49694, + [SMALL_STATE(1991)] = 49707, + [SMALL_STATE(1992)] = 49722, + [SMALL_STATE(1993)] = 49737, + [SMALL_STATE(1994)] = 49752, + [SMALL_STATE(1995)] = 49763, + [SMALL_STATE(1996)] = 49778, + [SMALL_STATE(1997)] = 49793, + [SMALL_STATE(1998)] = 49808, + [SMALL_STATE(1999)] = 49823, + [SMALL_STATE(2000)] = 49838, + [SMALL_STATE(2001)] = 49853, + [SMALL_STATE(2002)] = 49868, + [SMALL_STATE(2003)] = 49883, + [SMALL_STATE(2004)] = 49896, + [SMALL_STATE(2005)] = 49911, + [SMALL_STATE(2006)] = 49924, + [SMALL_STATE(2007)] = 49939, + [SMALL_STATE(2008)] = 49954, + [SMALL_STATE(2009)] = 49969, + [SMALL_STATE(2010)] = 49980, + [SMALL_STATE(2011)] = 49995, + [SMALL_STATE(2012)] = 50008, + [SMALL_STATE(2013)] = 50021, + [SMALL_STATE(2014)] = 50036, + [SMALL_STATE(2015)] = 50051, + [SMALL_STATE(2016)] = 50066, + [SMALL_STATE(2017)] = 50081, + [SMALL_STATE(2018)] = 50096, + [SMALL_STATE(2019)] = 50109, + [SMALL_STATE(2020)] = 50122, + [SMALL_STATE(2021)] = 50137, + [SMALL_STATE(2022)] = 50148, + [SMALL_STATE(2023)] = 50163, + [SMALL_STATE(2024)] = 50178, + [SMALL_STATE(2025)] = 50193, + [SMALL_STATE(2026)] = 50208, + [SMALL_STATE(2027)] = 50223, + [SMALL_STATE(2028)] = 50238, + [SMALL_STATE(2029)] = 50253, + [SMALL_STATE(2030)] = 50266, + [SMALL_STATE(2031)] = 50281, + [SMALL_STATE(2032)] = 50296, + [SMALL_STATE(2033)] = 50311, + [SMALL_STATE(2034)] = 50326, + [SMALL_STATE(2035)] = 50341, + [SMALL_STATE(2036)] = 50356, + [SMALL_STATE(2037)] = 50371, + [SMALL_STATE(2038)] = 50384, + [SMALL_STATE(2039)] = 50399, + [SMALL_STATE(2040)] = 50414, + [SMALL_STATE(2041)] = 50429, + [SMALL_STATE(2042)] = 50444, + [SMALL_STATE(2043)] = 50459, + [SMALL_STATE(2044)] = 50474, + [SMALL_STATE(2045)] = 50489, + [SMALL_STATE(2046)] = 50504, + [SMALL_STATE(2047)] = 50519, + [SMALL_STATE(2048)] = 50534, + [SMALL_STATE(2049)] = 50549, + [SMALL_STATE(2050)] = 50564, + [SMALL_STATE(2051)] = 50579, + [SMALL_STATE(2052)] = 50594, + [SMALL_STATE(2053)] = 50605, + [SMALL_STATE(2054)] = 50620, + [SMALL_STATE(2055)] = 50635, + [SMALL_STATE(2056)] = 50650, + [SMALL_STATE(2057)] = 50663, + [SMALL_STATE(2058)] = 50678, + [SMALL_STATE(2059)] = 50693, + [SMALL_STATE(2060)] = 50704, + [SMALL_STATE(2061)] = 50719, + [SMALL_STATE(2062)] = 50730, + [SMALL_STATE(2063)] = 50745, + [SMALL_STATE(2064)] = 50756, + [SMALL_STATE(2065)] = 50767, + [SMALL_STATE(2066)] = 50782, + [SMALL_STATE(2067)] = 50797, + [SMALL_STATE(2068)] = 50812, + [SMALL_STATE(2069)] = 50827, + [SMALL_STATE(2070)] = 50842, + [SMALL_STATE(2071)] = 50857, + [SMALL_STATE(2072)] = 50872, + [SMALL_STATE(2073)] = 50883, + [SMALL_STATE(2074)] = 50898, + [SMALL_STATE(2075)] = 50913, + [SMALL_STATE(2076)] = 50928, + [SMALL_STATE(2077)] = 50943, + [SMALL_STATE(2078)] = 50958, + [SMALL_STATE(2079)] = 50973, + [SMALL_STATE(2080)] = 50988, + [SMALL_STATE(2081)] = 50999, + [SMALL_STATE(2082)] = 51010, + [SMALL_STATE(2083)] = 51025, + [SMALL_STATE(2084)] = 51040, + [SMALL_STATE(2085)] = 51055, + [SMALL_STATE(2086)] = 51070, + [SMALL_STATE(2087)] = 51081, + [SMALL_STATE(2088)] = 51096, + [SMALL_STATE(2089)] = 51111, + [SMALL_STATE(2090)] = 51126, + [SMALL_STATE(2091)] = 51141, + [SMALL_STATE(2092)] = 51156, + [SMALL_STATE(2093)] = 51171, + [SMALL_STATE(2094)] = 51186, + [SMALL_STATE(2095)] = 51201, + [SMALL_STATE(2096)] = 51212, + [SMALL_STATE(2097)] = 51227, + [SMALL_STATE(2098)] = 51242, + [SMALL_STATE(2099)] = 51257, + [SMALL_STATE(2100)] = 51268, + [SMALL_STATE(2101)] = 51283, + [SMALL_STATE(2102)] = 51298, + [SMALL_STATE(2103)] = 51313, + [SMALL_STATE(2104)] = 51324, + [SMALL_STATE(2105)] = 51339, + [SMALL_STATE(2106)] = 51354, + [SMALL_STATE(2107)] = 51369, + [SMALL_STATE(2108)] = 51380, + [SMALL_STATE(2109)] = 51395, + [SMALL_STATE(2110)] = 51410, + [SMALL_STATE(2111)] = 51425, + [SMALL_STATE(2112)] = 51440, + [SMALL_STATE(2113)] = 51455, + [SMALL_STATE(2114)] = 51470, + [SMALL_STATE(2115)] = 51485, + [SMALL_STATE(2116)] = 51500, + [SMALL_STATE(2117)] = 51513, + [SMALL_STATE(2118)] = 51528, + [SMALL_STATE(2119)] = 51543, + [SMALL_STATE(2120)] = 51558, + [SMALL_STATE(2121)] = 51573, + [SMALL_STATE(2122)] = 51586, + [SMALL_STATE(2123)] = 51601, + [SMALL_STATE(2124)] = 51616, + [SMALL_STATE(2125)] = 51631, + [SMALL_STATE(2126)] = 51643, + [SMALL_STATE(2127)] = 51655, + [SMALL_STATE(2128)] = 51667, + [SMALL_STATE(2129)] = 51679, + [SMALL_STATE(2130)] = 51691, + [SMALL_STATE(2131)] = 51701, + [SMALL_STATE(2132)] = 51713, + [SMALL_STATE(2133)] = 51723, + [SMALL_STATE(2134)] = 51735, + [SMALL_STATE(2135)] = 51747, + [SMALL_STATE(2136)] = 51759, + [SMALL_STATE(2137)] = 51771, + [SMALL_STATE(2138)] = 51783, + [SMALL_STATE(2139)] = 51795, + [SMALL_STATE(2140)] = 51807, + [SMALL_STATE(2141)] = 51819, + [SMALL_STATE(2142)] = 51831, + [SMALL_STATE(2143)] = 51843, + [SMALL_STATE(2144)] = 51855, + [SMALL_STATE(2145)] = 51867, + [SMALL_STATE(2146)] = 51879, + [SMALL_STATE(2147)] = 51891, + [SMALL_STATE(2148)] = 51903, + [SMALL_STATE(2149)] = 51915, + [SMALL_STATE(2150)] = 51927, + [SMALL_STATE(2151)] = 51939, + [SMALL_STATE(2152)] = 51951, + [SMALL_STATE(2153)] = 51963, + [SMALL_STATE(2154)] = 51975, + [SMALL_STATE(2155)] = 51987, + [SMALL_STATE(2156)] = 51999, + [SMALL_STATE(2157)] = 52011, + [SMALL_STATE(2158)] = 52023, + [SMALL_STATE(2159)] = 52035, + [SMALL_STATE(2160)] = 52045, + [SMALL_STATE(2161)] = 52057, + [SMALL_STATE(2162)] = 52069, + [SMALL_STATE(2163)] = 52081, + [SMALL_STATE(2164)] = 52093, + [SMALL_STATE(2165)] = 52105, + [SMALL_STATE(2166)] = 52117, + [SMALL_STATE(2167)] = 52129, + [SMALL_STATE(2168)] = 52141, + [SMALL_STATE(2169)] = 52153, + [SMALL_STATE(2170)] = 52163, + [SMALL_STATE(2171)] = 52175, + [SMALL_STATE(2172)] = 52187, + [SMALL_STATE(2173)] = 52199, + [SMALL_STATE(2174)] = 52211, + [SMALL_STATE(2175)] = 52223, + [SMALL_STATE(2176)] = 52235, + [SMALL_STATE(2177)] = 52247, + [SMALL_STATE(2178)] = 52259, + [SMALL_STATE(2179)] = 52271, + [SMALL_STATE(2180)] = 52283, + [SMALL_STATE(2181)] = 52295, + [SMALL_STATE(2182)] = 52307, + [SMALL_STATE(2183)] = 52319, + [SMALL_STATE(2184)] = 52331, + [SMALL_STATE(2185)] = 52341, + [SMALL_STATE(2186)] = 52351, + [SMALL_STATE(2187)] = 52363, + [SMALL_STATE(2188)] = 52375, + [SMALL_STATE(2189)] = 52387, + [SMALL_STATE(2190)] = 52399, + [SMALL_STATE(2191)] = 52411, + [SMALL_STATE(2192)] = 52423, + [SMALL_STATE(2193)] = 52435, + [SMALL_STATE(2194)] = 52447, + [SMALL_STATE(2195)] = 52459, + [SMALL_STATE(2196)] = 52471, + [SMALL_STATE(2197)] = 52481, + [SMALL_STATE(2198)] = 52491, + [SMALL_STATE(2199)] = 52501, + [SMALL_STATE(2200)] = 52513, + [SMALL_STATE(2201)] = 52525, + [SMALL_STATE(2202)] = 52537, + [SMALL_STATE(2203)] = 52549, + [SMALL_STATE(2204)] = 52561, + [SMALL_STATE(2205)] = 52573, + [SMALL_STATE(2206)] = 52585, + [SMALL_STATE(2207)] = 52597, + [SMALL_STATE(2208)] = 52609, + [SMALL_STATE(2209)] = 52621, + [SMALL_STATE(2210)] = 52633, + [SMALL_STATE(2211)] = 52645, + [SMALL_STATE(2212)] = 52657, + [SMALL_STATE(2213)] = 52669, + [SMALL_STATE(2214)] = 52681, + [SMALL_STATE(2215)] = 52693, + [SMALL_STATE(2216)] = 52703, + [SMALL_STATE(2217)] = 52715, + [SMALL_STATE(2218)] = 52727, + [SMALL_STATE(2219)] = 52739, + [SMALL_STATE(2220)] = 52749, + [SMALL_STATE(2221)] = 52761, + [SMALL_STATE(2222)] = 52773, + [SMALL_STATE(2223)] = 52785, + [SMALL_STATE(2224)] = 52797, + [SMALL_STATE(2225)] = 52809, + [SMALL_STATE(2226)] = 52821, + [SMALL_STATE(2227)] = 52833, + [SMALL_STATE(2228)] = 52843, + [SMALL_STATE(2229)] = 52855, + [SMALL_STATE(2230)] = 52867, + [SMALL_STATE(2231)] = 52879, + [SMALL_STATE(2232)] = 52891, + [SMALL_STATE(2233)] = 52903, + [SMALL_STATE(2234)] = 52913, + [SMALL_STATE(2235)] = 52925, + [SMALL_STATE(2236)] = 52937, + [SMALL_STATE(2237)] = 52949, + [SMALL_STATE(2238)] = 52961, + [SMALL_STATE(2239)] = 52973, + [SMALL_STATE(2240)] = 52985, + [SMALL_STATE(2241)] = 52997, + [SMALL_STATE(2242)] = 53009, + [SMALL_STATE(2243)] = 53021, + [SMALL_STATE(2244)] = 53033, + [SMALL_STATE(2245)] = 53045, + [SMALL_STATE(2246)] = 53057, + [SMALL_STATE(2247)] = 53067, + [SMALL_STATE(2248)] = 53079, + [SMALL_STATE(2249)] = 53091, + [SMALL_STATE(2250)] = 53103, + [SMALL_STATE(2251)] = 53113, + [SMALL_STATE(2252)] = 53125, + [SMALL_STATE(2253)] = 53137, + [SMALL_STATE(2254)] = 53149, + [SMALL_STATE(2255)] = 53161, + [SMALL_STATE(2256)] = 53173, + [SMALL_STATE(2257)] = 53185, + [SMALL_STATE(2258)] = 53197, + [SMALL_STATE(2259)] = 53207, + [SMALL_STATE(2260)] = 53219, + [SMALL_STATE(2261)] = 53231, + [SMALL_STATE(2262)] = 53243, + [SMALL_STATE(2263)] = 53255, + [SMALL_STATE(2264)] = 53267, + [SMALL_STATE(2265)] = 53279, + [SMALL_STATE(2266)] = 53291, + [SMALL_STATE(2267)] = 53301, + [SMALL_STATE(2268)] = 53313, + [SMALL_STATE(2269)] = 53325, + [SMALL_STATE(2270)] = 53337, + [SMALL_STATE(2271)] = 53349, + [SMALL_STATE(2272)] = 53361, + [SMALL_STATE(2273)] = 53373, + [SMALL_STATE(2274)] = 53385, + [SMALL_STATE(2275)] = 53397, + [SMALL_STATE(2276)] = 53409, + [SMALL_STATE(2277)] = 53419, + [SMALL_STATE(2278)] = 53431, + [SMALL_STATE(2279)] = 53443, + [SMALL_STATE(2280)] = 53455, + [SMALL_STATE(2281)] = 53467, + [SMALL_STATE(2282)] = 53479, + [SMALL_STATE(2283)] = 53491, + [SMALL_STATE(2284)] = 53503, + [SMALL_STATE(2285)] = 53515, + [SMALL_STATE(2286)] = 53527, + [SMALL_STATE(2287)] = 53537, + [SMALL_STATE(2288)] = 53549, + [SMALL_STATE(2289)] = 53561, + [SMALL_STATE(2290)] = 53573, + [SMALL_STATE(2291)] = 53585, + [SMALL_STATE(2292)] = 53597, + [SMALL_STATE(2293)] = 53607, + [SMALL_STATE(2294)] = 53617, + [SMALL_STATE(2295)] = 53629, + [SMALL_STATE(2296)] = 53641, + [SMALL_STATE(2297)] = 53651, + [SMALL_STATE(2298)] = 53663, + [SMALL_STATE(2299)] = 53673, + [SMALL_STATE(2300)] = 53683, + [SMALL_STATE(2301)] = 53695, + [SMALL_STATE(2302)] = 53707, + [SMALL_STATE(2303)] = 53719, + [SMALL_STATE(2304)] = 53729, + [SMALL_STATE(2305)] = 53741, + [SMALL_STATE(2306)] = 53753, + [SMALL_STATE(2307)] = 53765, + [SMALL_STATE(2308)] = 53775, + [SMALL_STATE(2309)] = 53785, + [SMALL_STATE(2310)] = 53797, + [SMALL_STATE(2311)] = 53807, + [SMALL_STATE(2312)] = 53816, + [SMALL_STATE(2313)] = 53825, + [SMALL_STATE(2314)] = 53834, + [SMALL_STATE(2315)] = 53843, + [SMALL_STATE(2316)] = 53852, + [SMALL_STATE(2317)] = 53861, + [SMALL_STATE(2318)] = 53870, + [SMALL_STATE(2319)] = 53879, + [SMALL_STATE(2320)] = 53888, + [SMALL_STATE(2321)] = 53897, + [SMALL_STATE(2322)] = 53906, + [SMALL_STATE(2323)] = 53915, + [SMALL_STATE(2324)] = 53924, + [SMALL_STATE(2325)] = 53933, + [SMALL_STATE(2326)] = 53942, + [SMALL_STATE(2327)] = 53951, + [SMALL_STATE(2328)] = 53960, + [SMALL_STATE(2329)] = 53969, + [SMALL_STATE(2330)] = 53978, + [SMALL_STATE(2331)] = 53987, + [SMALL_STATE(2332)] = 53996, + [SMALL_STATE(2333)] = 54005, + [SMALL_STATE(2334)] = 54014, + [SMALL_STATE(2335)] = 54023, + [SMALL_STATE(2336)] = 54032, + [SMALL_STATE(2337)] = 54041, + [SMALL_STATE(2338)] = 54050, + [SMALL_STATE(2339)] = 54059, + [SMALL_STATE(2340)] = 54068, + [SMALL_STATE(2341)] = 54077, + [SMALL_STATE(2342)] = 54086, + [SMALL_STATE(2343)] = 54095, + [SMALL_STATE(2344)] = 54104, + [SMALL_STATE(2345)] = 54113, + [SMALL_STATE(2346)] = 54122, + [SMALL_STATE(2347)] = 54131, + [SMALL_STATE(2348)] = 54140, + [SMALL_STATE(2349)] = 54149, + [SMALL_STATE(2350)] = 54158, + [SMALL_STATE(2351)] = 54167, + [SMALL_STATE(2352)] = 54176, + [SMALL_STATE(2353)] = 54185, + [SMALL_STATE(2354)] = 54194, + [SMALL_STATE(2355)] = 54203, + [SMALL_STATE(2356)] = 54212, + [SMALL_STATE(2357)] = 54221, + [SMALL_STATE(2358)] = 54230, + [SMALL_STATE(2359)] = 54239, + [SMALL_STATE(2360)] = 54248, + [SMALL_STATE(2361)] = 54257, + [SMALL_STATE(2362)] = 54266, + [SMALL_STATE(2363)] = 54275, + [SMALL_STATE(2364)] = 54284, + [SMALL_STATE(2365)] = 54293, + [SMALL_STATE(2366)] = 54302, + [SMALL_STATE(2367)] = 54311, + [SMALL_STATE(2368)] = 54320, + [SMALL_STATE(2369)] = 54329, + [SMALL_STATE(2370)] = 54338, + [SMALL_STATE(2371)] = 54347, + [SMALL_STATE(2372)] = 54356, + [SMALL_STATE(2373)] = 54365, + [SMALL_STATE(2374)] = 54374, + [SMALL_STATE(2375)] = 54383, + [SMALL_STATE(2376)] = 54392, + [SMALL_STATE(2377)] = 54401, + [SMALL_STATE(2378)] = 54410, + [SMALL_STATE(2379)] = 54419, + [SMALL_STATE(2380)] = 54428, + [SMALL_STATE(2381)] = 54437, + [SMALL_STATE(2382)] = 54446, + [SMALL_STATE(2383)] = 54455, + [SMALL_STATE(2384)] = 54464, + [SMALL_STATE(2385)] = 54473, + [SMALL_STATE(2386)] = 54482, + [SMALL_STATE(2387)] = 54491, + [SMALL_STATE(2388)] = 54500, + [SMALL_STATE(2389)] = 54509, + [SMALL_STATE(2390)] = 54518, + [SMALL_STATE(2391)] = 54527, + [SMALL_STATE(2392)] = 54536, + [SMALL_STATE(2393)] = 54545, + [SMALL_STATE(2394)] = 54554, + [SMALL_STATE(2395)] = 54563, + [SMALL_STATE(2396)] = 54572, + [SMALL_STATE(2397)] = 54581, + [SMALL_STATE(2398)] = 54590, + [SMALL_STATE(2399)] = 54599, + [SMALL_STATE(2400)] = 54608, + [SMALL_STATE(2401)] = 54617, + [SMALL_STATE(2402)] = 54626, + [SMALL_STATE(2403)] = 54635, + [SMALL_STATE(2404)] = 54644, + [SMALL_STATE(2405)] = 54653, + [SMALL_STATE(2406)] = 54662, + [SMALL_STATE(2407)] = 54671, + [SMALL_STATE(2408)] = 54680, + [SMALL_STATE(2409)] = 54689, + [SMALL_STATE(2410)] = 54698, + [SMALL_STATE(2411)] = 54707, + [SMALL_STATE(2412)] = 54716, + [SMALL_STATE(2413)] = 54725, + [SMALL_STATE(2414)] = 54734, + [SMALL_STATE(2415)] = 54743, + [SMALL_STATE(2416)] = 54752, + [SMALL_STATE(2417)] = 54761, + [SMALL_STATE(2418)] = 54770, + [SMALL_STATE(2419)] = 54779, + [SMALL_STATE(2420)] = 54788, + [SMALL_STATE(2421)] = 54797, + [SMALL_STATE(2422)] = 54806, + [SMALL_STATE(2423)] = 54815, + [SMALL_STATE(2424)] = 54824, + [SMALL_STATE(2425)] = 54833, + [SMALL_STATE(2426)] = 54842, + [SMALL_STATE(2427)] = 54851, + [SMALL_STATE(2428)] = 54860, + [SMALL_STATE(2429)] = 54869, + [SMALL_STATE(2430)] = 54878, + [SMALL_STATE(2431)] = 54887, + [SMALL_STATE(2432)] = 54896, + [SMALL_STATE(2433)] = 54905, + [SMALL_STATE(2434)] = 54914, + [SMALL_STATE(2435)] = 54923, + [SMALL_STATE(2436)] = 54932, + [SMALL_STATE(2437)] = 54941, + [SMALL_STATE(2438)] = 54950, + [SMALL_STATE(2439)] = 54959, + [SMALL_STATE(2440)] = 54968, + [SMALL_STATE(2441)] = 54977, + [SMALL_STATE(2442)] = 54986, + [SMALL_STATE(2443)] = 54995, + [SMALL_STATE(2444)] = 55004, + [SMALL_STATE(2445)] = 55013, + [SMALL_STATE(2446)] = 55022, + [SMALL_STATE(2447)] = 55031, + [SMALL_STATE(2448)] = 55040, + [SMALL_STATE(2449)] = 55049, + [SMALL_STATE(2450)] = 55058, + [SMALL_STATE(2451)] = 55067, + [SMALL_STATE(2452)] = 55076, + [SMALL_STATE(2453)] = 55085, + [SMALL_STATE(2454)] = 55094, + [SMALL_STATE(2455)] = 55103, + [SMALL_STATE(2456)] = 55112, + [SMALL_STATE(2457)] = 55121, + [SMALL_STATE(2458)] = 55130, + [SMALL_STATE(2459)] = 55139, + [SMALL_STATE(2460)] = 55148, + [SMALL_STATE(2461)] = 55157, + [SMALL_STATE(2462)] = 55166, + [SMALL_STATE(2463)] = 55175, + [SMALL_STATE(2464)] = 55184, + [SMALL_STATE(2465)] = 55193, + [SMALL_STATE(2466)] = 55202, + [SMALL_STATE(2467)] = 55211, + [SMALL_STATE(2468)] = 55220, + [SMALL_STATE(2469)] = 55229, + [SMALL_STATE(2470)] = 55238, + [SMALL_STATE(2471)] = 55247, + [SMALL_STATE(2472)] = 55256, + [SMALL_STATE(2473)] = 55265, + [SMALL_STATE(2474)] = 55274, + [SMALL_STATE(2475)] = 55283, + [SMALL_STATE(2476)] = 55292, + [SMALL_STATE(2477)] = 55301, + [SMALL_STATE(2478)] = 55310, + [SMALL_STATE(2479)] = 55319, + [SMALL_STATE(2480)] = 55328, + [SMALL_STATE(2481)] = 55337, + [SMALL_STATE(2482)] = 55346, + [SMALL_STATE(2483)] = 55355, + [SMALL_STATE(2484)] = 55364, + [SMALL_STATE(2485)] = 55373, + [SMALL_STATE(2486)] = 55382, + [SMALL_STATE(2487)] = 55391, + [SMALL_STATE(2488)] = 55400, + [SMALL_STATE(2489)] = 55409, + [SMALL_STATE(2490)] = 55418, + [SMALL_STATE(2491)] = 55427, + [SMALL_STATE(2492)] = 55436, + [SMALL_STATE(2493)] = 55445, + [SMALL_STATE(2494)] = 55454, + [SMALL_STATE(2495)] = 55463, + [SMALL_STATE(2496)] = 55472, + [SMALL_STATE(2497)] = 55481, + [SMALL_STATE(2498)] = 55490, + [SMALL_STATE(2499)] = 55499, + [SMALL_STATE(2500)] = 55508, + [SMALL_STATE(2501)] = 55517, + [SMALL_STATE(2502)] = 55526, + [SMALL_STATE(2503)] = 55535, + [SMALL_STATE(2504)] = 55544, + [SMALL_STATE(2505)] = 55553, + [SMALL_STATE(2506)] = 55562, + [SMALL_STATE(2507)] = 55571, + [SMALL_STATE(2508)] = 55580, + [SMALL_STATE(2509)] = 55589, + [SMALL_STATE(2510)] = 55598, + [SMALL_STATE(2511)] = 55607, + [SMALL_STATE(2512)] = 55616, + [SMALL_STATE(2513)] = 55625, + [SMALL_STATE(2514)] = 55634, + [SMALL_STATE(2515)] = 55643, + [SMALL_STATE(2516)] = 55652, + [SMALL_STATE(2517)] = 55661, + [SMALL_STATE(2518)] = 55670, + [SMALL_STATE(2519)] = 55679, + [SMALL_STATE(2520)] = 55688, + [SMALL_STATE(2521)] = 55697, + [SMALL_STATE(2522)] = 55706, + [SMALL_STATE(2523)] = 55715, + [SMALL_STATE(2524)] = 55724, + [SMALL_STATE(2525)] = 55733, + [SMALL_STATE(2526)] = 55742, + [SMALL_STATE(2527)] = 55751, + [SMALL_STATE(2528)] = 55760, + [SMALL_STATE(2529)] = 55769, + [SMALL_STATE(2530)] = 55778, + [SMALL_STATE(2531)] = 55787, + [SMALL_STATE(2532)] = 55796, + [SMALL_STATE(2533)] = 55805, + [SMALL_STATE(2534)] = 55814, + [SMALL_STATE(2535)] = 55823, + [SMALL_STATE(2536)] = 55832, + [SMALL_STATE(2537)] = 55841, + [SMALL_STATE(2538)] = 55850, + [SMALL_STATE(2539)] = 55859, + [SMALL_STATE(2540)] = 55868, + [SMALL_STATE(2541)] = 55877, + [SMALL_STATE(2542)] = 55886, + [SMALL_STATE(2543)] = 55895, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127567,2220 +126568,2219 @@ static const TSParseActionEntry ts_parse_actions[] = { [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1794), [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(554), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(542), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2164), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(802), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2416), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1592), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1555), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2324), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2196), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(621), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(595), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2329), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1867), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2330), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2331), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2332), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1906), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2195), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1473), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(614), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [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_impl_item, 5, .production_id = 106), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(527), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2524), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1794), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(554), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1408), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(549), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(548), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1366), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1781), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2442), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2430), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1451), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(592), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2246), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1845), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1367), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2442), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [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(704), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2485), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1552), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(575), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1358), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1149), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(593), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1852), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1179), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(570), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1538), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(544), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(91), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(680), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2228), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(245), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1558), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1653), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1531), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1300), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5401] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(542), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2164), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(802), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2416), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1592), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1555), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2324), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2196), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(621), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(595), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2329), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1867), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2330), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2331), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2332), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1906), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2195), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1473), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(614), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(527), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2524), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1794), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(554), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1408), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(549), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(548), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1366), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1781), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2442), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2430), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1451), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(592), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2246), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1845), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1367), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2442), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2485), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .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_tuple_struct_pattern, 4, .production_id = 54), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1552), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(575), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1358), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1149), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(593), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1852), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1179), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(570), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1538), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(544), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(91), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(680), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2228), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(245), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1558), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1653), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1531), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1300), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5399] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), }; #ifdef __cplusplus